@exchanges/binance
Version:
Exchange provider for Binance API
11 lines (10 loc) • 357 B
TypeScript
import { BinanceClient } from '../../../clients';
import { coinM } from '../../../info';
export interface OpenInterestResponse {
symbol: string;
pair: string;
openInterest: number;
contractType: coinM.ContractType;
time: Date;
}
export declare function openInterest(client: BinanceClient, symbol: string): Promise<OpenInterestResponse>;