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