/ commands / tag / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const tag = {
 4    type: 'local-jsx',
 5    name: 'tag',
 6    description: 'Toggle a searchable tag on the current session',
 7    isEnabled: () => process.env.USER_TYPE === 'ant',
 8    argumentHint: '<tag-name>',
 9    load: () => import('./tag.js'),
10  } satisfies Command
11  
12  export default tag