UNPKG

@donmccurdy/caporal

Version:

A full-featured framework for building command line applications (cli) with node.js

10 lines (9 loc) 230 B
/** * @packageDocumentation * @internal */ import { BaseError } from "./base.js"; import { Validator } from "../types.js"; export declare class InvalidValidatorError extends BaseError { constructor(validator: Validator); }