UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 262 B
import { BinanceClient } from '../../../clients'; export interface OpenInterestResponse { openInterest: number; symbol: string; time: Date; } export declare function openInterest(client: BinanceClient, symbol: string): Promise<OpenInterestResponse>;