blob: a18f16020f68af1a466e32a97c3c66d6c72caf0d (
plain) (
tree)
|
|
type Completions = {
readonly name: string;
readonly items: {
readonly caption?: string;
readonly content?: string;
readonly url?: string;
readonly icon?: string;
}[];
}[];
export default Completions;
|