1import type { Command } from '../../commands.js' 2 3const help = { 4 type: 'local-jsx', 5 name: 'help', 6 description: 'Show help and available commands', 7 load: () => import('./help.js'), 8} satisfies Command 9 10export default help