| 76 | |
| 77 | // biome-ignore lint/suspicious/noExplicitAny: type |
| 78 | export interface CacheValue extends Record<string, any> { |
| 79 | url: string; |
| 80 | statusCode: number; |
| 81 | body: Buffer | string; |
| 82 | cachePolicy: CachePolicyObject; |
| 83 | } |
| 84 | |
| 85 | export interface Emitter extends EventEmitter { |
| 86 | addListener( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…