Interface AIVariableCompletionContext

interface AIVariableCompletionContext {
    prefix: string;
    range: Range;
    userInput: string;
}

Properties

prefix: string

A prefix to be applied to each completion item's text

range: Range

The range of suggestion completions.

userInput: string

Portion of user input to be used for filtering completion candidates.