UNPKG

@jawis/stdio-filter

Version:
12 lines (11 loc) 366 B
import { MakeIncludeLineDeps, MakeMapLineDeps, MakeUpdateScreenDeps } from "./internal"; type Deps = MakeIncludeLineDeps & MakeMapLineDeps & MakeUpdateScreenDeps & { onLineShown: (str: string) => void; mapLineBeforeOutput?: (line: string) => string; }; /** * * */ export declare const makeStdioFilterNew: (deps: Deps) => (str: string) => void; export {};