(host: SlashCommandHost)
| 6 | import { setExperimentalFeatures } from './experimental-flags'; |
| 7 | |
| 8 | export async function handleReloadTuiCommand(host: SlashCommandHost): Promise<void> { |
| 9 | const tuiConfig = await loadTuiConfig(); |
| 10 | await applyReloadedTuiConfig(host, tuiConfig); |
| 11 | host.showStatus('TUI config reloaded.', 'success'); |
| 12 | } |
| 13 | |
| 14 | export async function handleReloadCommand(host: SlashCommandHost): Promise<void> { |
| 15 | const tuiConfig = await loadTuiConfig(); |
no test coverage detected