/ commands / add-dir / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const addDir = {
 4    type: 'local-jsx',
 5    name: 'add-dir',
 6    description: 'Add a new working directory',
 7    argumentHint: '<path>',
 8    load: () => import('./add-dir.js'),
 9  } satisfies Command
10  
11  export default addDir