UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

7 lines (6 loc) 258 B
import { BinanceClient } from '../../../clients'; export interface CurrentAveragePriceResponse { mins: number; price: number; } export declare function currentAveragePrice(client: BinanceClient, symbol: string): Promise<CurrentAveragePriceResponse>;