UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 335 B
import { BinanceSignedClient } from '../../../clients'; export interface GetAllCrossMarginPairsPayload { } export interface GetAllCrossMarginPairsResponse { coin: string; } export declare function getAllCrossMarginPairs(client: BinanceSignedClient, payload: GetAllCrossMarginPairsPayload): Promise<GetAllCrossMarginPairsResponse>;