tiny-bin
Version:
A library for building tiny and beautiful command line apps.
9 lines (8 loc) • 416 B
TypeScript
import Addon from './addon.js';
import type ChainableCommand from './chainable_command.js';
import type { CommandOptions } from '../types.js';
declare class ChainableBinAfterCustomCommand extends Addon {
command(name: string, description: string, options?: Omit<CommandOptions, 'name' | 'description'>): ChainableCommand;
run(argv?: string[]): Promise<void>;
}
export default ChainableBinAfterCustomCommand;