UNPKG

452 BTypeScriptView Raw
1import { GitError } from './git-error';
2/**
3 * The `TaskConfigurationError` is thrown when a command was incorrectly
4 * configured. An error of this kind means that no attempt was made to
5 * run your command through the underlying `git` binary.
6 *
7 * Check the `.message` property for more detail on why your configuration
8 * resulted in an error.
9 */
10export declare class TaskConfigurationError extends GitError {
11 constructor(message?: string);
12}