UNPKG

345 BTypeScriptView Raw
1export interface CommandOption {
2 alias: string[];
3 description: string;
4 opts: string[];
5 help: string;
6}
7export interface CLICommands {
8 [command: string]: CommandOption;
9}
10export declare const commands: CLICommands;
11export declare function twoColFromJson(json: any, rightSidePropertyName: string, leftside?: Function): string;