UNPKG

@donmccurdy/caporal

Version:

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

11 lines (10 loc) 291 B
/** * @packageDocumentation * @internal */ import { BaseError } from "./base.js"; import { Command } from "../command/index.js"; import { Argument } from "../types.js"; export declare class MissingArgumentError extends BaseError { constructor(argument: Argument, command: Command); }