UNPKG

206 BTypeScriptView Raw
1import StreamOutput from './stream';
2import deps from './deps';
3export default abstract class Base {
4 stdout: StreamOutput;
5 stderr: StreamOutput;
6 config: typeof deps.Config;
7 constructor();
8}