/** * A 0-based line range where `startLine` is inclusive and `endLineExcl` is exclusive. */ export declare class LineRange0Based { /** 0-based, inclusive. */ readonly startLine: number; /** 0-based, exclusive. */ readonly endLineExcl: number; constructor( /** 0-based, inclusive. */ startLine: number, /** 0-based, exclusive. */ endLineExcl: number); } //# sourceMappingURL=lineRange.d.ts.map