Interface SelectedCompletionInfo

Describes the currently selected completion item.

interface SelectedCompletionInfo {
    range: Range;
    text: string;
}

Properties

Properties

range: Range

The range that will be replaced if this completion item is accepted.

text: string

The text the range will be replaced with if this completion is accepted.