UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

13 lines (12 loc) 578 B
import { BinanceSignedClient } from '../../../clients'; export interface GetLeftDailyRedemptionQuotaOfFlexibleProductPayload { productId: string; type: 'FAST' | 'NORMAL'; } export interface GetLeftDailyRedemptionQuotaOfFlexibleProductResponse { asset: string; dailyQuota: number; leftQuota: number; minRedemptionAmount: number; } export declare function getLeftDailyRedemptionQuotaOfFlexibleProduct(client: BinanceSignedClient, payload: GetLeftDailyRedemptionQuotaOfFlexibleProductPayload): Promise<GetLeftDailyRedemptionQuotaOfFlexibleProductResponse>;