From 025498a5e44a9120e906df1725ccc1bb376ec7de Mon Sep 17 00:00:00 2001 From: t0chk <86585817+t0chk@users.noreply.github.com> Date: Sat, 25 Nov 2023 13:54:15 +0300 Subject: [PATCH] add semicolons --- src/types/request/v1/spotV1.ts | 16 ++++++------ src/types/response/futures.ts | 48 +++++++++++++++++----------------- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/src/types/request/v1/spotV1.ts b/src/types/request/v1/spotV1.ts index 032811c..0009c4a 100644 --- a/src/types/request/v1/spotV1.ts +++ b/src/types/request/v1/spotV1.ts @@ -127,12 +127,12 @@ export interface GetHistoricPlanOrdersParams { } export interface SpotCandleData { - open: string - high: string - low: string - close: string - quoteVol: string - baseVol: string - usdtVol: string - ts: string + open: string; + high: string; + low: string; + close: string; + quoteVol: string; + baseVol: string; + usdtVol: string; + ts: string; } \ No newline at end of file diff --git a/src/types/response/futures.ts b/src/types/response/futures.ts index cfb6504..fb3b4f3 100644 --- a/src/types/response/futures.ts +++ b/src/types/response/futures.ts @@ -32,30 +32,30 @@ export interface FuturesAccount { } export interface FuturesSymbolRule { - baseCoin: string - buyLimitPriceRatio: string - feeRateUpRatio: string - limitOpenTime: string - maintainTime: string - makerFeeRate: string - maxOrderNum: string - maxPositionNum: string - minTradeNum: string - minTradeUSDT: string - offTime: string - openCostUpRatio: string - priceEndStep: string - pricePlace: string - quoteCoin: string - sellLimitPriceRatio: string - sizeMultiplier: string - supportMarginCoins: string[] - symbol: string - symbolName: string - symbolStatus: string - symbolType: string - takerFeeRate: string - volumePlace: string + baseCoin: string; + buyLimitPriceRatio: string; + feeRateUpRatio: string; + limitOpenTime: string; + maintainTime: string; + makerFeeRate: string; + maxOrderNum: string; + maxPositionNum: string; + minTradeNum: string; + minTradeUSDT: string; + offTime: string; + openCostUpRatio: string; + priceEndStep: string; + pricePlace: string; + quoteCoin: string; + sellLimitPriceRatio: string; + sizeMultiplier: string; + supportMarginCoins: string[]; + symbol: string; + symbolName: string; + symbolStatus: string; + symbolType: string; + takerFeeRate: string; + volumePlace: string; } export interface FuturesPosition {