@jawis/stdio-filter
Version:
Filter the stdio from console applications.
12 lines (11 loc) • 366 B
TypeScript
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 {};