blob: ec9135f6db4ee6852937664468e68fc592f2872c (
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;
|