UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 375 B
import { BinanceSignedClient } from '../../../clients'; export interface QueryMarginInterestRateHistoryPayload { } export interface QueryMarginInterestRateHistoryResponse { coin: string; } export declare function queryMarginInterestRateHistory(client: BinanceSignedClient, payload: QueryMarginInterestRateHistoryPayload): Promise<QueryMarginInterestRateHistoryResponse>;