UNPKG

@ln-markets/sdk

Version:
11 lines 439 B
import type { KyInstance } from 'ky'; import type { PaginationInput } from '../../types.js'; export type GetLastPriceInput = PaginationInput; export type GetLastPriceOutput = { lastPrice: number; time: string; }[]; type GetLastPrice = (input?: GetLastPriceInput) => Promise<GetLastPriceOutput>; export declare const createGetLastPrice: (instance: KyInstance) => GetLastPrice; export {}; //# sourceMappingURL=get-last-price.d.ts.map