UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 315 B
import { BinanceSignedClient } from '../../../clients'; export interface GetInterestHistoryPayload { } export interface GetInterestHistoryResponse { coin: string; } export declare function getInterestHistory(client: BinanceSignedClient, payload: GetInterestHistoryPayload): Promise<GetInterestHistoryResponse>;