16 lines
515 B
TypeScript
16 lines
515 B
TypeScript
// Command system exports
|
|
export { slashAction } from './slash'
|
|
export { registerSlashCommands, unregisterSlashCommands, SlashCommandProvider } from './slash'
|
|
|
|
// Command registry system (for extending with custom commands)
|
|
export { slashCommandRegistry, SlashCommandRegistry } from './registry'
|
|
export type { SlashCommandHandler } from './types'
|
|
|
|
// Command bus (for extending with custom commands)
|
|
export {
|
|
executeCommand,
|
|
registerCommands,
|
|
unregisterCommands,
|
|
type CommandHandler,
|
|
} from './command-bus'
|