UNPKG

ink

Version:
8 lines (7 loc) 239 B
export type InputParser = { push: (chunk: string) => string[]; hasPendingEscape: () => boolean; flushPendingEscape: () => string | undefined; reset: () => void; }; export declare const createInputParser: () => InputParser;