UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

17 lines (16 loc) 615 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface AdjustCrossCollateralLTVV2Payload { loanCoin: string; collateralCoin: string; amount: number; direction: spot.FuturesDirectionType; } export interface AdjustCrossCollateralLTVV2Response { loanCoin: string; collateralCoin: string; direction: spot.FuturesDirectionType; amount: number; time: Date; } export declare function adjustCrossCollateralLTVV2(client: BinanceSignedClient, payload: AdjustCrossCollateralLTVV2Payload): Promise<AdjustCrossCollateralLTVV2Response>;