UNPKG

tiny-bin

Version:

A library for building tiny and beautiful command line apps.

9 lines (8 loc) 288 B
import Command from './command.js'; import type Bin from './bin.js'; import type { ParsedArgs } from 'tiny-parse-argv'; declare class CommandDefault extends Command { constructor(bin: Bin); run(options: ParsedArgs, argv: string[]): Promise<void>; } export default CommandDefault;