@atomist/automation-client
Version:
Atomist API for software low-level client
13 lines • 414 B
TypeScript
import { RepoFinder } from "./common/repoFinder";
import { RepoLoader } from "./common/repoLoader";
/**
* Details common to commands created via functions
*/
export interface CommandDetails<PARAMS = any> {
description: string;
intent?: string | string[];
tags?: string | string[];
repoFinder?: RepoFinder;
repoLoader?: (p: PARAMS) => RepoLoader;
}
//# sourceMappingURL=CommandDetails.d.ts.map