更新
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
export interface SourceLocation {
|
||||
line: number;
|
||||
column: number;
|
||||
}
|
||||
export declare class LinesAndColumns {
|
||||
private readonly length;
|
||||
private readonly offsets;
|
||||
constructor(string: string);
|
||||
locationForIndex(index: number): SourceLocation | null;
|
||||
indexForLocation(location: SourceLocation): number | null;
|
||||
private lengthOfLine;
|
||||
}
|
||||
Reference in New Issue
Block a user