(config: RequestConfig)
| 38 | private config: RequestConfig; |
| 39 | |
| 40 | constructor(config: RequestConfig) { |
| 41 | this.config = config; |
| 42 | } |
| 43 | |
| 44 | private async send<T>({endpoint, ...options}: SendOptions): Promise<T> { |
| 45 | const url = this.buildUrl({endpoint}); |
nothing calls this directly
no outgoing calls
no test coverage detected