UNPKG

patch-console

Version:
5 lines (4 loc) 202 B
declare type Callback = (stream: 'stdout' | 'stderr', data: string) => void; declare type Restore = () => void; declare const patchConsole: (callback: Callback) => Restore; export default patchConsole;