()
| 100 | private readonly inflight = new Map<string, Promise<Response>>(); |
| 101 | |
| 102 | constructor() { |
| 103 | this.baseUrl = getBaseUrl(); |
| 104 | this.apiKey = getApiKey(); |
| 105 | } |
| 106 | |
| 107 | private buildHeaders(extra?: Record<string, string>): Record<string, string> { |
| 108 | const headers: Record<string, string> = { |
nothing calls this directly
no test coverage detected