-
Notifications
You must be signed in to change notification settings - Fork 511
/
Copy pathindex.d.ts
46 lines (43 loc) · 1.53 KB
/
index.d.ts
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { BinanceRestClient } from './types/base';
import { GenericEndpoints } from './types/generic';
import { MarketEndpoints } from './types/market';
import { OrderEndpoints } from './types/order';
import { AccountEndpoints } from './types/account';
import { StreamEndpoints } from './types/stream';
import { FuturesEndpoints } from './types/futures';
import { DeliveryEndpoints } from './types/delivery';
import { PAPIEndpoints } from './types/papi';
import { MarginEndpoints } from './types/margin';
import { PortfolioMarginEndpoints } from './types/portfolio-margin';
import { SavingsEndpoints } from './types/savings';
import { MiningEndpoints } from './types/mining';
import { UtilityEndpoints } from './types/utility';
export interface BinanceRest extends
GenericEndpoints,
MarketEndpoints,
OrderEndpoints,
AccountEndpoints,
StreamEndpoints,
FuturesEndpoints,
DeliveryEndpoints,
PAPIEndpoints,
MarginEndpoints,
PortfolioMarginEndpoints,
SavingsEndpoints,
MiningEndpoints,
UtilityEndpoints {}
export * from './types/base';
export * from './types/market';
export * from './types/order';
export * from './types/account';
export * from './types/stream';
export * from './types/futures';
export * from './types/delivery';
export * from './types/papi';
export * from './types/margin';
export * from './types/portfolio-margin';
export * from './types/savings';
export * from './types/mining';
export * from './types/utility';
declare function Binance(options?: BinanceRestClient.BinanceRestOptions): BinanceRest;
export default Binance;