cmd-ts
Version:
> 💻 A type-driven command line argument parser, with awesome error reporting 🤤
21 lines (20 loc) • 694 B
TypeScript
/**
* The index module: the entrance to the world of cmd-ts 😎
*
* @packageDocumentation
*/
export { subcommands } from './subcommands';
export { Type, extendType } from './type';
export * from './types';
export { binary } from './binary';
export { command } from './command';
export { flag } from './flag';
export { option } from './option';
export { positional } from './positional';
export { dryRun, runSafely, run, parse, Runner } from './runner';
export { restPositionals } from './restPositionals';
export { multiflag } from './multiflag';
export { multioption } from './multioption';
export { union } from './union';
export { oneOf } from './oneOf';
export { rest } from './rest';