aboutsummaryrefslogtreecommitdiff
path: root/src/background/domains/CompletionItem.ts
blob: 96f6ee69c8f40f700afaa76835f5f4c995e376b0 (plain) (blame)
1
2
3
4
5
6
export default interface CompletionItem {
  readonly caption?: string;
  readonly content?: string;
  readonly url?: string;
  readonly icon?: string;
}