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