Fix types

This commit is contained in:
Dmitry Leleko
2023-04-19 10:41:47 +03:00
parent 6513b5dedb
commit 0c4f047531

View File

@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/consistent-type-definitions */
import type { BigNumber } from 'bignumber.js';
import type { BigNumber } from 'bignumber.js';
import type exchanges from './constants/exchanges.js';
import type subOrderStatuses from './constants/subOrderStatuses.js';
import type positionStatuses from './constants/positionStatuses.js';
@@ -248,8 +248,8 @@ export type FuturesTradeInfo = {
futuresTradeRequestId: string
sender: string
instrument: string
buyPrice: number | null
sellPrice: number | null
buyPrice: number | undefined
sellPrice: number | undefined
buyPower: number
sellPower: number
minAmount: number