UNPKG

@ln-markets/sdk

Version:
20 lines 563 B
import type { KyInstance } from 'ky'; export type FuturesCrossGetOpenOrdersOutput = { canceled: false; canceledAt: null; createdAt: string; filled: false; filledAt: null; id: string; open: true; price: number; quantity: number; side: 'buy' | 'sell'; tradingFee: number; type: 'limit'; uid: string; }[]; type GetOpenOrders = () => Promise<FuturesCrossGetOpenOrdersOutput>; export declare const createGetOpenOrders: (instance: KyInstance) => GetOpenOrders; export {}; //# sourceMappingURL=get-open-orders.d.ts.map