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