Position
ts
export interface Position {
line: number;
column: number;
}WARNING
Not to be used directly.
Representation of a position in the source code, defined by a line number and a column number. This interface is used to specify the location of various code elements in the TypeScript AST, allowing for accurate referencing and error reporting during the parsing process. The line property represents the line number (starting from 1), while the column property represents the column number (starting from 1) within that line.