@exchanges/binance
Version:
Exchange provider for Binance API
8 lines (7 loc) • 315 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface MarginAccountRepayPayload {
}
export interface MarginAccountRepayResponse {
coin: string;
}
export declare function marginAccountRepay(client: BinanceSignedClient, payload: MarginAccountRepayPayload): Promise<MarginAccountRepayResponse>;