aboutsummaryrefslogtreecommitdiff
path: root/src/background/domains/CompletionItem.ts
blob: 657efaa76ec076be320be0e9ebb8c220e1ebb85f (plain) (blame)
1
2
3
4
5
6
7
export default interface CompletionItem {
  readonly caption?: string;
  readonly content?: string;
  readonly url?: string;
  readonly icon?: string;
  // eslint-disable-next-line semi
}