remove silly logger from ws by default. Expand spot and linear types

This commit is contained in:
tiagosiebler
2022-08-18 17:04:53 +01:00
parent ae56067c94
commit 2d0366a708
15 changed files with 174 additions and 31 deletions

View File

@@ -1,3 +1,7 @@
export type numberInString = string;
export type OrderSide = 'Buy' | 'Sell';
export type KlineInterval =
| '1m'
| '3m'
@@ -13,8 +17,6 @@ export type KlineInterval =
| '1w'
| '1M';
export type numberInString = string;
export interface APIResponse<T> {
ret_code: number;
ret_msg: 'OK' | string;