UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

11 lines (10 loc) 273 B
import { Command } from "../interfaces/command"; export declare class CommandImpl implements Command { aliases: string[]; command: string; commandDesc: string; handler: (argv: any) => void; options: any; subCommands: Command[]; constructor(); }