UNPKG

simple-git

Version:

Simple GIT interface for node.js

8 lines (7 loc) 377 B
import { SimpleGitOptions, SimpleGitTask } from '../types'; import { GitError } from './git-error'; export declare class GitPluginError extends GitError { task?: SimpleGitTask<any> | undefined; readonly plugin?: keyof SimpleGitOptions | undefined; constructor(task?: SimpleGitTask<any> | undefined, plugin?: keyof SimpleGitOptions | undefined, message?: string); }