UNPKG

@ln-markets/sdk

Version:
11 lines 402 B
import type { KyInstance } from 'ky'; import type { PaginationInput } from '../../types.js'; export type GetIndexInput = PaginationInput; export type GetIndexOutput = { index: number; time: string; }[]; type GetIndex = (input?: GetIndexInput) => Promise<GetIndexOutput>; export declare const createGetIndex: (instance: KyInstance) => GetIndex; export {}; //# sourceMappingURL=get-index.d.ts.map