aboutsummaryrefslogtreecommitdiff
path: root/node_modules/simple-git/src/lib/tasks/branch.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/simple-git/src/lib/tasks/branch.d.ts')
-rw-r--r--node_modules/simple-git/src/lib/tasks/branch.d.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/node_modules/simple-git/src/lib/tasks/branch.d.ts b/node_modules/simple-git/src/lib/tasks/branch.d.ts
deleted file mode 100644
index 157b2ae..0000000
--- a/node_modules/simple-git/src/lib/tasks/branch.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import { BranchMultiDeleteResult, BranchSingleDeleteResult, BranchSummary } from '../../../typings';
-import { StringTask } from '../types';
-export declare function containsDeleteBranchCommand(commands: string[]): boolean;
-export declare function branchTask(customArgs: string[]): StringTask<BranchSummary | BranchSingleDeleteResult>;
-export declare function branchLocalTask(): StringTask<BranchSummary>;
-export declare function deleteBranchesTask(branches: string[], forceDelete?: boolean): StringTask<BranchMultiDeleteResult>;
-export declare function deleteBranchTask(branch: string, forceDelete?: boolean): StringTask<BranchSingleDeleteResult>;