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

export default Completions;