Skip to content

Commit 414765e

Browse files
committed
fix: remove unnecessary extend
1 parent bd00079 commit 414765e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/services/api/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type {AxiosRequestConfig} from 'axios';
22

33
import {AuthAPI} from './auth';
4-
import {BaseYdbAPI} from './base';
54
import {MetaAPI} from './meta';
65
import {OperationAPI} from './operation';
76
import {PDiskAPI} from './pdisk';
@@ -12,7 +11,7 @@ import {TraceAPI} from './trace';
1211
import {VDiskAPI} from './vdisk';
1312
import {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});

0 commit comments

Comments
 (0)