Word inside a model.
interface IWordAtPosition { endColumn: number; startColumn: number; word: string;}
readonly endColumn: number
The column where the word ends.
readonly startColumn: number
The column where the word starts.
readonly word: string
The word.
Word inside a model.