You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
354 B
7 lines
354 B
1 month ago
|
import { Segment, StackNode } from "./types";
|
||
|
export declare function setTracking(value: boolean): void;
|
||
|
export declare function offsetStack(): void;
|
||
|
export declare function resetOffsetStack(): void;
|
||
|
export declare function track<T extends Segment<any>[]>(segments: T, stacks?: StackNode[]): [T, StackNode[]];
|
||
|
export declare function getStack(): string;
|