11 lines
338 B
TypeScript
11 lines
338 B
TypeScript
|
|
export { parseCommand } from './command-parse';
|
|||
|
|
export { parseCommandSchema } from './schema-parse';
|
|||
|
|
export { validateCommand, parseCommandWithSchema, applyCommandSchema } from './command-validate';
|
|||
|
|
export type {
|
|||
|
|
Command,
|
|||
|
|
CommandParamSchema,
|
|||
|
|
CommandOptionSchema,
|
|||
|
|
CommandFlagSchema,
|
|||
|
|
CommandSchema,
|
|||
|
|
} from './types';
|