UNPKG

300 BTypeScriptView Raw
1import { ICommand } from '../libs/commands/ICommand';
2export declare class ConfigCommand implements ICommand {
3 command: string;
4 aliases: string;
5 describe: string;
6 builder(yargs: any): any;
7 beforeStartup(): void;
8 beforeStorage(): void;
9 handler(argv: any): Promise<void>;
10}