Word inside a model.

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

Properties

endColumn: number

The column where the word ends.

startColumn: number

The column where the word starts.

word: string

The word.