| 3 | */ |
| 4 | |
| 5 | export interface HookCommand { |
| 6 | type: 'command'; |
| 7 | command: string; |
| 8 | timeout?: number; // Optional timeout in seconds (default: 60) |
| 9 | } |
| 10 | |
| 11 | export interface HookMatcher { |
| 12 | matcher?: string; // Pattern to match tool names (regex supported) |
nothing calls this directly
no outgoing calls
no test coverage detected