v2.4.0-beta.1. remove circleci, cleaning in ws client

This commit is contained in:
tiagosiebler
2022-09-14 23:12:44 +01:00
parent 04fd7989dc
commit d1ed7971ad
9 changed files with 296 additions and 264 deletions

View File

@@ -1,3 +1,14 @@
import { InverseClient } from '../inverse-client';
import { LinearClient } from '../linear-client';
import { SpotClient } from '../spot-client';
import { SpotClientV3 } from '../spot-client-v3';
export type RESTClient =
| InverseClient
| LinearClient
| SpotClient
| SpotClientV3;
export type numberInString = string;
export type OrderSide = 'Buy' | 'Sell';