Files
claude-code/src/commands/hooks/index.ts
nirholas ef23b25415 🚅 index.ts
2026-03-31 10:23:02 +00:00

14 lines
262 B
TypeScript

import type { Command } from '../../commands.js'
const hooks = {
type: 'local-jsx',
name: 'hooks',
description: 'View hook configurations for tool events',
immediate: true,
load: () => import('./hooks.js'),
} satisfies Command
export default hooks