You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.ts 515B

123456789101112131415
  1. // Command system exports
  2. export { slashAction } from './slash'
  3. export { registerSlashCommands, unregisterSlashCommands, SlashCommandProvider } from './slash'
  4. // Command registry system (for extending with custom commands)
  5. export { slashCommandRegistry, SlashCommandRegistry } from './registry'
  6. export type { SlashCommandHandler } from './types'
  7. // Command bus (for extending with custom commands)
  8. export {
  9. executeCommand,
  10. registerCommands,
  11. unregisterCommands,
  12. type CommandHandler,
  13. } from './command-bus'