UNPKG

zip-tap-reporter

Version:
7 lines (6 loc) 286 B
export declare type Caller = (title: string) => CallerResult; export declare type CallerResult = { newChunk: (data: string) => void; done?: (logs: string[]) => void; }; export default function intoBlocks(caller: Caller, done?: (data: string[]) => void): (data: string) => void;