This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/lines-and-columns/dist/index.d.ts

13 lines
350 B
TypeScript

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