autogit-plugin-autocommit
Version:
A plugin for automatically making a commit when specific files change.
13 lines (12 loc) • 381 B
TypeScript
declare const defaultOptions: {
message: string;
paths: string[];
};
declare function factory(customOptions?: Partial<typeof defaultOptions>): (config: any, repoPath: any, ctx: any, task: any) => Promise<any>;
declare const _default: typeof factory & {
default: typeof factory;
}
declare namespace _default {
export type type = typeof factory;
}
export = _default;