(feature: string)
| 43 | } |
| 44 | |
| 45 | const NA = (feature: string) => `ℹ️ ${feature} isn't available on this bot build.`; |
| 46 | const truncate = (s: string, n: number): string => { s = s.replace(/\s+/g, ' ').trim(); return s.length > n ? s.slice(0, n - 1) + '…' : s; }; |
| 47 | |
| 48 | export const COMMANDS: BotCommand[] = [ |