Interface IWordAtPosition

Expand description

Word inside a model.

interface IWordAtPosition {
    endColumn: number;
    startColumn: number;
    word: string;
}

Properties§

§readonly endColumn: number

The column where the word ends.

§readonly startColumn: number

The column where the word starts.

§readonly word: string

The word.