UNPKG

268 BTypeScriptView Raw
1import { Config } from './../config';
2import { Executable } from './../executable';
3export declare class ValidateCommand implements Executable {
4 config: Config;
5 constructor(config: Config);
6 execute(params: any): void;
7 validate(params: any): boolean;
8}