UNPKG

449 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[] | RegExp;
9 tags?: string | string[];
10 autoSubmit?: boolean;
11 repoFinder?: RepoFinder;
12 repoLoader?: (p: PARAMS) => RepoLoader;
13}
14//# sourceMappingURL=CommandDetails.d.ts.map
\No newline at end of file