Initial commit: 11ty website with Fire/Frost branding
This commit is contained in:
17
node_modules/posthtml-parser/dist/location-tracker.d.ts
generated
vendored
Normal file
17
node_modules/posthtml-parser/dist/location-tracker.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
declare type SourceLocation = {
|
||||
start: Position;
|
||||
end: Position;
|
||||
};
|
||||
declare type Position = {
|
||||
line: number;
|
||||
column: number;
|
||||
};
|
||||
declare class LocationTracker {
|
||||
private readonly source;
|
||||
private lastPosition;
|
||||
private lastIndex;
|
||||
constructor(source: string);
|
||||
getPosition(index: number): Position;
|
||||
}
|
||||
|
||||
export { LocationTracker, Position, SourceLocation };
|
||||
Reference in New Issue
Block a user