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 11import type { AxiosRequestConfig } from 'axios' ;
22
33import { AuthAPI } from './auth' ;
4- import { BaseYdbAPI } from './base' ;
54import { MetaAPI } from './meta' ;
65import { OperationAPI } from './operation' ;
76import { PDiskAPI } from './pdisk' ;
@@ -12,7 +11,7 @@ import {TraceAPI} from './trace';
1211import { VDiskAPI } from './vdisk' ;
1312import { ViewerAPI } from './viewer' ;
1413
15- export class YdbEmbeddedAPI extends BaseYdbAPI {
14+ export class YdbEmbeddedAPI {
1615 auth : AuthAPI ;
1716 operation : OperationAPI ;
1817 pdisk : PDiskAPI ;
@@ -25,7 +24,6 @@ export class YdbEmbeddedAPI extends BaseYdbAPI {
2524 meta ?: MetaAPI ;
2625
2726 constructor ( { config, webVersion} : { config : AxiosRequestConfig ; webVersion ?: boolean } ) {
28- super ( { config} ) ;
2927 this . auth = new AuthAPI ( { config} ) ;
3028 if ( webVersion ) {
3129 this . meta = new MetaAPI ( { config} ) ;
You can’t perform that action at this time.
0 commit comments