UNPKG

@donmccurdy/caporal

Version:

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

13 lines (12 loc) 273 B
/** * @packageDocumentation * @internal */ import { BaseError } from "./base.js"; import type { Command } from "../command/index.js"; /** * @todo Rewrite */ export declare class UnknownOptionError extends BaseError { constructor(flag: string, command: Command); }