/ commands / ide / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const ide = {
 4    type: 'local-jsx',
 5    name: 'ide',
 6    description: 'Manage IDE integrations and show status',
 7    argumentHint: '[open]',
 8    load: () => import('./ide.js'),
 9  } satisfies Command
10  
11  export default ide