Interface InlineCompletions<TItem>
interface InlineCompletions<
TItem extends InlineCompletion = InlineCompletion,
> {
commands?: InlineCompletionCommand[];
enableForwardStability?: boolean;
items: readonly TItem[];
suppressSuggestions?: boolean;
}Properties§
§§
readonly commands?: InlineCompletionCommand[]§
readonly enable Forward Stability?: booleanWhen set and the user types a suggestion without derivating from it, the inline suggestion is not updated.
readonly items: readonly TItem[]§readonly suppress Suggestions?: boolean
A list of commands associated with the inline completions of this list.