Range
ts
export interface Range {
start: Position;
end: Position;
}WARNING
Not to be used directly.
Representation of a range in the source code, defined by a starting position and an ending position. 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 start property represents the starting position of the range, while the end property represents the ending position of the range, both of which are defined by the Position interface.