Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AutocompleteItem

type AutocompleteItem = {
prefix?: string;
suffix: string;
theme?: {
section: string;
key: string;
}
;
modifiers?:
| false
| null
| undefined;
color?:
| string
| false
| null
| undefined;
label?: string;
}
;

§Type

§
{
prefix?: string;
suffix: string;
theme?: {
section: string;
key: string;
}
;
modifiers?:
| false
| null
| undefined;
color?:
| string
| false
| null
| undefined;
label?: string;
}
[src]