UNPKG

@donmccurdy/caporal

Version:

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

10 lines (9 loc) 221 B
/** * @packageDocumentation * @internal */ import { BaseError } from "./base.js"; import { Command } from "../command/index.js"; export declare class NoActionError extends BaseError { constructor(cmd?: Command); }