UNPKG

@fabiospampinato/autogit

Version:

Define commands, using plugins, to execute across all your repositories.

36 lines (35 loc) 912 B
declare const Config: { normalize(config: any): any; init(): void; get: { all(): any; defaults(): { dry: boolean; exitOnError: boolean; parallel: number; pick: boolean; verbose: boolean; commands: any; repositories: { depth: number; roots: string[]; include: string[]; exclude: string[]; }; }; local(): any; dynamic(): { dry: any; parallel: {} | undefined; pick: any; verbose: {} | undefined; repositories: { include: any; exclude: any; }; }; }; }; declare type Config = typeof Config & ReturnType<typeof Config.get.defaults>; declare const _default: Config; export default _default;