UNPKG

tiny-bin

Version:

A library for building tiny and beautiful command line apps.

9 lines (8 loc) 238 B
import Addon from './addon.js'; import type Command from './command.js'; declare class Usage extends Addon { protected usages: Set<string>; print(command: Command): void; register(usage: string): void; } export default Usage;