refactor: move command.ts to command/index.ts
This commit is contained in:
parent
e06dc8ecba
commit
f1b1741db8
|
|
@ -1,10 +0,0 @@
|
||||||
export { parseCommand } from './command/command-parse.js';
|
|
||||||
export { parseCommandSchema } from './command/schema-parse.js';
|
|
||||||
export { validateCommand, parseCommandWithSchema, applyCommandSchema } from './command/command-validate.js';
|
|
||||||
export type {
|
|
||||||
Command,
|
|
||||||
CommandParamSchema,
|
|
||||||
CommandOptionSchema,
|
|
||||||
CommandFlagSchema,
|
|
||||||
CommandSchema,
|
|
||||||
} from './command/types.js';
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
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';
|
||||||
Loading…
Reference in New Issue