UNPKG

414 BTypeScriptView Raw
1import { RepoFinder } from "./common/repoFinder";
2import { RepoLoader } from "./common/repoLoader";
3/**
4 * Details common to commands created via functions
5 */
6export interface CommandDetails<PARAMS = any> {
7 description: string;
8 intent?: string | string[];
9 tags?: string | string[];
10 repoFinder?: RepoFinder;
11 repoLoader?: (p: PARAMS) => RepoLoader;
12}
13//# sourceMappingURL=CommandDetails.d.ts.map
\No newline at end of file