@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API
11 lines • 402 B
TypeScript
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