(extra?: Record<string, string>)
| 174 | } |
| 175 | |
| 176 | private headers(extra?: Record<string, string>): Record<string, string> { |
| 177 | return { authorization: `Bearer ${this.apiKey}`, ...extra } |
| 178 | } |
| 179 | |
| 180 | authHeader(): Record<string, string> { |
| 181 | return { authorization: `Bearer ${this.apiKey}` } |
no outgoing calls
no test coverage detected