@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API
9 lines • 313 B
TypeScript
import type { KyInstance } from 'ky';
export interface GetBestPriceOutput {
askPrice: number;
bidPrice: number;
}
type GetBestPrice = () => Promise<GetBestPriceOutput>;
export declare const createGetBestPrice: (instance: KyInstance) => GetBestPrice;
export {};
//# sourceMappingURL=get-best-price.d.ts.map