Files
website/node_modules/@volar/source-map/lib/buildStacks.d.ts
2024-05-06 17:15:30 -04:00

7 lines
225 B
TypeScript

import type { Segment, StackNode } from 'muggle-string';
export interface Stack {
source: string;
range: [number, number];
}
export declare function buildStacks<T>(chunks: Segment<T>[], stacks: StackNode[]): Stack[];