UNPKG

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