/ commands / hooks / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const hooks = {
 4    type: 'local-jsx',
 5    name: 'hooks',
 6    description: 'View hook configurations for tool events',
 7    immediate: true,
 8    load: () => import('./hooks.js'),
 9  } satisfies Command
10  
11  export default hooks