@exchanges/binance
Version:
Exchange provider for Binance API
7 lines (6 loc) • 352 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface GetMaxAmountForAdjustCrossCollateralLTVResponse {
maxInAmount: number;
maxOutAmount: number;
}
export declare function getMaxAmountForAdjustCrossCollateralLTV(client: BinanceSignedClient, collateralCoin: string): Promise<GetMaxAmountForAdjustCrossCollateralLTVResponse>;