UNPKG

477 BTypeScriptView Raw
1import { Command } from './Command';
2import { Config } from './Config';
3import { RunOptions } from './types/common';
4export declare class CLI {
5 config: Config;
6 cmd: Command;
7 notifier: any;
8 constructor({config}?: {
9 config?: RunOptions;
10 });
11 run(): Promise<void>;
12 flush(): Promise<{} | void>;
13 readonly cmdAskingForHelp: boolean;
14 readonly Help: any;
15}
16export declare function run({config}?: {
17 config?: RunOptions;
18}): Promise<void>;