UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

5 lines (4 loc) 394 B
import { BinanceClient } from '../../../clients'; import type { IndividualSymbolBookTickerStreamsResponse } from './individualSymbolBookTickerStreams'; export declare type AllBookTickersStreamResponse = IndividualSymbolBookTickerStreamsResponse; export declare function allBookTickersStream(client: BinanceClient, callback: (data: AllBookTickersStreamResponse, error?: any) => any): () => any;