diff options
Diffstat (limited to 'node_modules/simple-git/src/lib/api.d.ts')
-rw-r--r-- | node_modules/simple-git/src/lib/api.d.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/simple-git/src/lib/api.d.ts b/node_modules/simple-git/src/lib/api.d.ts new file mode 100644 index 0000000..38f6fe4 --- /dev/null +++ b/node_modules/simple-git/src/lib/api.d.ts @@ -0,0 +1,11 @@ +import { GitConstructError } from './errors/git-construct-error'; +import { GitError } from './errors/git-error'; +import { GitPluginError } from './errors/git-plugin-error'; +import { GitResponseError } from './errors/git-response-error'; +import { TaskConfigurationError } from './errors/task-configuration-error'; +import { CheckRepoActions } from './tasks/check-is-repo'; +import { CleanOptions } from './tasks/clean'; +import { GitConfigScope } from './tasks/config'; +import { grepQueryBuilder } from './tasks/grep'; +import { ResetMode } from './tasks/reset'; +export { CheckRepoActions, CleanOptions, GitConfigScope, GitConstructError, GitError, GitPluginError, GitResponseError, ResetMode, TaskConfigurationError, grepQueryBuilder, }; |