@typescript/analyze-trace
Version:
Analyze the output of tsc --generatetrace
11 lines (10 loc) • 302 B
TypeScript
export declare type CharKind = "whitespace" | "comment" | "string" | "regex" | "code";
interface StepResult {
charKind: CharKind;
wrapLine: boolean;
}
export interface StateMachine {
step(ch: number, nextCh: number): StepResult;
}
export declare function create(): StateMachine;
export {};