File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 1
1
import type { AxiosRequestConfig } from 'axios' ;
2
2
3
3
import { AuthAPI } from './auth' ;
4
- import { BaseYdbAPI } from './base' ;
5
4
import { MetaAPI } from './meta' ;
6
5
import { OperationAPI } from './operation' ;
7
6
import { PDiskAPI } from './pdisk' ;
@@ -12,7 +11,7 @@ import {TraceAPI} from './trace';
12
11
import { VDiskAPI } from './vdisk' ;
13
12
import { ViewerAPI } from './viewer' ;
14
13
15
- export class YdbEmbeddedAPI extends BaseYdbAPI {
14
+ export class YdbEmbeddedAPI {
16
15
auth : AuthAPI ;
17
16
operation : OperationAPI ;
18
17
pdisk : PDiskAPI ;
@@ -25,7 +24,6 @@ export class YdbEmbeddedAPI extends BaseYdbAPI {
25
24
meta ?: MetaAPI ;
26
25
27
26
constructor ( { config, webVersion} : { config : AxiosRequestConfig ; webVersion ?: boolean } ) {
28
- super ( { config} ) ;
29
27
this . auth = new AuthAPI ( { config} ) ;
30
28
if ( webVersion ) {
31
29
this . meta = new MetaAPI ( { config} ) ;
You can’t perform that action at this time.
0 commit comments