@exchanges/binance
Version:
Exchange provider for Binance API
9 lines (8 loc) • 321 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface RepayWithCollateralResponse {
coin: string;
collateralCoin: string;
amount: number;
quoteId: string;
}
export declare function repayWithCollateral(client: BinanceSignedClient, quoteId: string): Promise<RepayWithCollateralResponse>;