(public readonly config: OpenAPIConfig)
| 9 | export abstract class BaseHttpRequest { |
| 10 | |
| 11 | constructor(public readonly config: OpenAPIConfig) {} |
| 12 | |
| 13 | public abstract request<T>(options: ApiRequestOptions): CancelablePromise<T>; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected