UNPKG

170 BTypeScriptView Raw
1import { IConsole } from './IConsole';
2export declare type Startup = (console: IConsole) => Promise<void>;
3export interface ConsoleOptions {
4 initializer?: Startup;
5}