-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.ts
More file actions
28 lines (20 loc) · 796 Bytes
/
client.ts
File metadata and controls
28 lines (20 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
Test Automation (No submodules)
SDKs (no submodules) to test automation workflows.
The version of the OpenAPI document: 1.0.0
NOTE: This file is auto generated by Konfig (https://konfigthis.com).
*/
import { AxiosRequestConfig } from "axios";
import {
GreetingsApi,
} from "./api";
import { Configuration, ConfigurationParameters } from "./configuration";
import { AutomationTestWithSubmoduleCustom } from "./client-custom";
export class AutomationTestWithSubmodule extends AutomationTestWithSubmoduleCustom {
readonly greetings: GreetingsApi;
constructor(configurationParameters: ConfigurationParameters = {}) {
super(configurationParameters);
const configuration = new Configuration(configurationParameters);
this.greetings = new GreetingsApi(configuration);
}
}