An interface for a completion request reflecting the state of the editor.

interface ITextState {
    column: number;
    line: number;
    text: string;
}

Hierarchy

Properties

Properties

column: number

The character number of the editor cursor within a line.

line: number

The line number of the editor cursor.

text: string

The current value of the editor.