20 lines
675 B
JavaScript
Executable File
20 lines
675 B
JavaScript
Executable File
/**
|
|
* The index module: the entrance to the world of cmd-ts 😎
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export { subcommands } from './subcommands';
|
|
export { 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 } from './runner';
|
|
export { restPositionals } from './restPositionals';
|
|
export { multiflag } from './multiflag';
|
|
export { multioption } from './multioption';
|
|
export { union } from './union';
|
|
export { oneOf } from './oneOf';
|
|
//# sourceMappingURL=index.js.map
|