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