UNPKG

@typescript/analyze-trace

Version:
11 lines (10 loc) 302 B
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 {};