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