UNPKG

153 BTypeScriptView Raw
1import { ProcessArgs } from './ProcessArgs';
2export interface IConsole {
3 readonly args: ProcessArgs;
4 start(): Promise<void>;
5 stop(): void;
6}