UNPKG

@donmccurdy/caporal

Version:

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

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