UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

11 lines (10 loc) 457 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface MarginTransferForSubAccountPayload { email: string; asset: string; amount: number; type: spot.MarginTransferTypeEnum; } export declare type MarginTransferForSubAccountResponse = string; export declare function marginTransferForSubAccount(client: BinanceSignedClient, payload: MarginTransferForSubAccountPayload): Promise<string>;