mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-08 02:46:20 +08:00
change url to archive mirror
This commit is contained in:
12
node_modules/lines-and-columns/dist/index.d.ts
generated
vendored
Normal file
12
node_modules/lines-and-columns/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user