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
/
usdtFutures
/
marketData
/
openInterest.d.ts
8 lines
(7 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
BinanceClient
}
from
'../../../clients'
;
export
interface
OpenInterestResponse
{
openInterest
:
number
;
symbol
:
string
;
time
:
Date
; }
export
declare
function
openInterest
(
client
:
BinanceClient
,
symbol
:
string
):
Promise
<
OpenInterestResponse
>;