UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

11 lines (10 loc) 381 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface AllOrdersPayload { symbol: string; orderId?: number; startTime?: Date | number; endTime?: Date | number; limit?: number; } export declare function allOrders(client: BinanceSignedClient, payload: AllOrdersPayload): Promise<spot.OrderQueryResponse[]>;