UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 297 B
import { BinanceSignedClient } from '../../../clients'; export interface QuerySubAccountAssetsResponse { asset: string; free: number; locked: number; } export declare function querySubAccountAssets(client: BinanceSignedClient, email: string): Promise<QuerySubAccountAssetsResponse[]>;