mirror of
https://github.com/sern-handler/website
synced 2026-06-13 19:32:26 +00:00
7 lines
225 B
TypeScript
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[];
|