UNPKG

@donmccurdy/caporal

Version:

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

8 lines (7 loc) 262 B
/** * @packageDocumentation * @internal */ import { ParserResult, ParserProcessedResult } from "../types.js"; import type { Command } from "./index.js"; export declare function validateCall(cmd: Command, result: ParserResult): Promise<ParserProcessedResult>;