UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

5 lines (4 loc) 390 B
import { BinanceClient } from '../../../clients'; import type { IndividualSymbolTickerStreamsResponse } from './individualSymbolTickerStreams'; export declare type AllMarketTickersStreamResponse = IndividualSymbolTickerStreamsResponse; export declare function allMarketTickersStream(client: BinanceClient, callback: (data: AllMarketTickersStreamResponse[], error?: any) => any): () => any;