chore(): added comments to candle types

This commit is contained in:
JJ-Cro
2024-12-17 17:32:16 +01:00
parent a835c793c8
commit 0452aba3ec
2 changed files with 16 additions and 16 deletions

View File

@@ -86,14 +86,14 @@ export interface FuturesFillV2 {
} }
export type FuturesCandlestickV2 = [ export type FuturesCandlestickV2 = [
string, string, // timestamp
string, string, // open
string, string, // high
string, string, // low
string, string, // close
string, string, // baseVolume
string, string, // usdtVolume
string, string, // quoteVolume
]; ];
export interface FuturesOpenInterestV2 { export interface FuturesOpenInterestV2 {

View File

@@ -93,14 +93,14 @@ export interface SpotOrderBookDepthV2 {
} }
export type SpotCandlestickV2 = [ export type SpotCandlestickV2 = [
string, string, // timestamp
string, string, // open
string, string, // high
string, string, // low
string, string, // close
string, string, // baseVolume
string, string, // usdtVolume
string, string, // quoteVolume
]; ];
export interface SpotTradeV2 { export interface SpotTradeV2 {