import { RepoFinder } from "./common/repoFinder"; import { RepoLoader } from "./common/repoLoader"; /** * Details common to commands created via functions */ export interface CommandDetails { description: string; intent?: string | string[]; tags?: string | string[]; repoFinder?: RepoFinder; repoLoader?: (p: PARAMS) => RepoLoader; }