(
configuration?: Configuration,
protected basePath: string = BASE_PATH,
protected axios: AxiosInstance = globalAxios
)
| 47 | protected configuration: Configuration | undefined; |
| 48 | |
| 49 | constructor( |
| 50 | configuration?: Configuration, |
| 51 | protected basePath: string = BASE_PATH, |
| 52 | protected axios: AxiosInstance = globalAxios |
| 53 | ) { |
| 54 | if (configuration) { |
| 55 | this.configuration = configuration; |
| 56 | this.basePath = configuration.basePath || this.basePath; |
| 57 | } |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected