We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff4544c + 0f11ea8 commit c9b4b7eCopy full SHA for c9b4b7e
src/templates/core/BaseHttpRequest.hbs
@@ -6,11 +6,7 @@ import type { OpenAPIConfig } from './OpenAPI';
6
7
export class BaseHttpRequest {
8
9
- protected readonly config: OpenAPIConfig;
10
-
11
- constructor(config: OpenAPIConfig) {
12
- this.config = config;
13
- }
+ constructor(protected readonly config: OpenAPIConfig) {}
14
15
public request<T>(options: ApiRequestOptions): CancelablePromise<T> {
16
throw new Error('Not Implemented');
0 commit comments