UNPKG

377 BTypeScriptView Raw
1import { SimpleGitOptions, SimpleGitTask } from '../types';
2import { GitError } from './git-error';
3export 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}