From 6aceea78796442fa6d45628b5f5db4ee0bfb302a Mon Sep 17 00:00:00 2001 From: tiagosiebler Date: Thu, 18 Aug 2022 17:07:15 +0100 Subject: [PATCH] swap type order --- src/types/response/spot.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/types/response/spot.ts b/src/types/response/spot.ts index 4d99888..dc1c969 100644 --- a/src/types/response/spot.ts +++ b/src/types/response/spot.ts @@ -1,7 +1,3 @@ -export interface SpotBalances { - balances: SpotBalance[]; -} - export interface SpotBalance { coin: string; coinId: string; @@ -11,6 +7,10 @@ export interface SpotBalance { locked: string; } +export interface SpotBalances { + balances: SpotBalance[]; +} + export interface SpotLastPrice { symbol: string; price: string;