| 144 | type HookFactory<H, K = any> = (key: K) => H; |
| 145 | |
| 146 | interface HookMapInterceptor<H, K = any> { |
| 147 | factory?: (key: K, hook: H) => H; |
| 148 | } |
| 149 | |
| 150 | export class HookMap<H> { |
| 151 | constructor(factory: HookFactory<H>, name?: string); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…