UNPKG

@donmccurdy/caporal

Version:

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

10 lines (9 loc) 255 B
/** * @packageDocumentation * @internal */ import { BaseError } from "./base.js"; import type { Command } from "../command/index.js"; export declare class ValidationSummaryError extends BaseError { constructor(cmd: Command, errors: BaseError[]); }