UNPKG
@exchanges/binance
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.3
Exchange provider for Binance API
@exchanges/binance
/
build
/
api
/
spotMarginSavingsMaining
/
marketData
/
currentAveragePrice.d.ts
7 lines
(6 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
BinanceClient
}
from
'../../../clients'
;
export
interface
CurrentAveragePriceResponse
{
mins
:
number
;
price
:
number
; }
export
declare
function
currentAveragePrice
(
client
:
BinanceClient
,
symbol
:
string
):
Promise
<
CurrentAveragePriceResponse
>;