dify/web/app/components/goto-anything/actions/commands/index.ts
Stephen Zhou f2842da397
chore(web): new lint setup (#30020)
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
2025-12-23 16:58:55 +08:00

16 lines
515 B
TypeScript

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