From 01160246e4a0c0052181c72a53737e356ea7d02d Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 12 Feb 2022 10:33:06 +0100 Subject: First commit --- node_modules/simple-git/src/lib/runners/git-executor.d.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 node_modules/simple-git/src/lib/runners/git-executor.d.ts (limited to 'node_modules/simple-git/src/lib/runners/git-executor.d.ts') diff --git a/node_modules/simple-git/src/lib/runners/git-executor.d.ts b/node_modules/simple-git/src/lib/runners/git-executor.d.ts new file mode 100644 index 0000000..c145af1 --- /dev/null +++ b/node_modules/simple-git/src/lib/runners/git-executor.d.ts @@ -0,0 +1,15 @@ +import { PluginStore } from '../plugins'; +import { GitExecutorEnv, outputHandler, SimpleGitExecutor, SimpleGitTask } from '../types'; +import { Scheduler } from './scheduler'; +export declare class GitExecutor implements SimpleGitExecutor { + binary: string; + cwd: string; + private _scheduler; + private _plugins; + private _chain; + env: GitExecutorEnv; + outputHandler?: outputHandler; + constructor(binary: string, cwd: string, _scheduler: Scheduler, _plugins: PluginStore); + chain(): SimpleGitExecutor; + push(task: SimpleGitTask): Promise; +} -- cgit