//#region streams.d.ts /** * This file simply re-exports the process's writeable streams * The intention is to provide a boundary to mock in tests * Anywhere in this package that writes to stdout/stderr, * should use this module to get references to them. */ declare const stdout: NodeJS.WriteStream & { fd: 1; }; declare const stderr: NodeJS.WriteStream & { fd: 2; }; //#endregion export { stderr, stdout };