mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 15:05:25 +00:00
larry babby and threejs for glsl
This commit is contained in:
17
webGl/my-threejs-test/node_modules/posthtml-parser/dist/location-tracker.d.ts
generated
vendored
Normal file
17
webGl/my-threejs-test/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