UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

9 lines (8 loc) 374 B
import { BinanceClient } from '../../../clients'; export interface SymbolPriceTickerResponse { symbol: string; price: number; time: Date; } export declare function symbolPriceTicker(client: BinanceClient): Promise<SymbolPriceTickerResponse[]>; export declare function symbolPriceTicker(client: BinanceClient, symbol: string): Promise<SymbolPriceTickerResponse>;