UNPKG

@donmccurdy/caporal

Version:

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

8 lines (7 loc) 231 B
/** * @packageDocumentation * @internal */ import type { Argument } from "../types.js"; import type { Command } from "../command/index.js"; export declare function findArgument(cmd: Command, name: string): Argument | undefined;