@exchanges/binance
Version:
Exchange provider for Binance API
5 lines (4 loc) • 393 B
TypeScript
import { BinanceClient } from '../../../clients';
import type { IndividualSymbolTickerStreamsResponse } from './individualSymbolTickerStreams';
export declare type AllMarketTickersStreamsResponse = IndividualSymbolTickerStreamsResponse;
export declare function allMarketTickersStreams(client: BinanceClient, callback: (data: AllMarketTickersStreamsResponse[], error?: any) => any): () => any;