feat(#251): add optional bapi rate limit parsing to REST clients

This commit is contained in:
tiagosiebler
2023-10-30 13:47:40 +00:00
parent eb33084b7f
commit a790fcaf04
4 changed files with 93 additions and 9 deletions

View File

@@ -52,8 +52,8 @@ export interface GetOrderbookParamsV5 {
limit?: number;
}
export interface GetTickersParamsV5 {
category: CategoryV5;
export interface GetTickersParamsV5<TCategory = CategoryV5> {
category: TCategory;
symbol?: string;
baseCoin?: string;
expDate?: string;