projecte_ionic/node_modules/lines-and-columns/dist/index.d.ts
2022-02-09 18:30:03 +01:00

13 lines
350 B
TypeScript
Executable file

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);
}