1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/lines-and-columns/dist/index.d.ts

13 lines
350 B
TypeScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
export declare type SourceLocation = {
line: number;
column: number;
};
export default class LinesAndColumns {
private string;
private offsets;
constructor(string: string);
locationForIndex(index: number): SourceLocation | null;
indexForLocation(location: SourceLocation): number | null;
private lengthOfLine(line);
}