21 lines
699 B
TypeScript
21 lines
699 B
TypeScript
/**
|
|
* The index module: the entrance to the world of cmd-ts 😎
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
|
|
export { subcommands } from './subcommands.ts';
|
|
export { Type, extendType } from './type.ts';
|
|
export * from './types.ts';
|
|
export { binary } from './binary.ts';
|
|
export { command } from './command.ts';
|
|
export { flag } from './flag.ts';
|
|
export { option } from './option.ts';
|
|
export { positional } from './positional.ts';
|
|
export { dryRun, runSafely, run, Runner } from './runner.ts';
|
|
export { restPositionals } from './restPositionals.ts';
|
|
export { multiflag } from './multiflag.ts';
|
|
export { multioption } from './multioption.ts';
|
|
export { union } from './union.ts';
|
|
export { oneOf } from './oneOf.ts';
|