@exchanges/binance
Version:
Exchange provider for Binance API
12 lines (11 loc) • 415 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
import { coinM } from '../../../info';
export interface ChangeMarginTypePayload {
symbol: string;
marginType: coinM.MarginType;
}
export interface ChangeMarginTypeResponse {
code: number;
msg: string;
}
export declare function changeMarginType(client: BinanceSignedClient, payload: ChangeMarginTypePayload): Promise<ChangeMarginTypeResponse>;