setup-java/node_modules/lines-and-columns/dist/index.d.ts
Stephen Franceschelli c1a589c5b6 Fix.
2019-07-30 13:41:05 -04:00

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