UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

15 lines (14 loc) 561 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface AdjustCrossCollateralLTVPayload { collateralCoin: string; amount: number; direction: spot.FuturesDirectionType; } export interface AdjustCrossCollateralLTVResponse { collateralCoin: string; direction: spot.FuturesDirectionType; amount: number; time: Date; } export declare function adjustCrossCollateralLTV(client: BinanceSignedClient, payload: AdjustCrossCollateralLTVPayload): Promise<AdjustCrossCollateralLTVResponse>;