aboutsummaryrefslogtreecommitdiff
path: root/src/console/Completions.ts
blob: a18f16020f68af1a466e32a97c3c66d6c72caf0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
type Completions = {
  readonly name: string;
  readonly items: {
    readonly caption?: string;
    readonly content?: string;
    readonly url?: string;
    readonly icon?: string;
  }[];
}[];

export default Completions;