diff options
Diffstat (limited to 'node_modules/simple-git/src/lib/tasks/pull.d.ts')
-rw-r--r-- | node_modules/simple-git/src/lib/tasks/pull.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/node_modules/simple-git/src/lib/tasks/pull.d.ts b/node_modules/simple-git/src/lib/tasks/pull.d.ts new file mode 100644 index 0000000..c08062f --- /dev/null +++ b/node_modules/simple-git/src/lib/tasks/pull.d.ts @@ -0,0 +1,3 @@ +import { PullResult } from '../../../typings'; +import { Maybe, StringTask } from '../types'; +export declare function pullTask(remote: Maybe<string>, branch: Maybe<string>, customArgs: string[]): StringTask<PullResult>; |