1 | import { SimpleGitOptions, SimpleGitTask } from '../types';
|
2 | import { GitError } from './git-error';
|
3 | export declare class GitPluginError extends GitError {
|
4 | task?: SimpleGitTask<any> | undefined;
|
5 | readonly plugin?: keyof SimpleGitOptions | undefined;
|
6 | constructor(task?: SimpleGitTask<any> | undefined, plugin?: keyof SimpleGitOptions | undefined, message?: string);
|
7 | }
|