UNPKG

@ln-markets/sdk

Version:

TypeScript SDK for LNMarkets API v2

8 lines (7 loc) 264 B
import type { RestFetcher } from '../../rest.js'; import type { Swap, SwapAsset } from './types.js'; export declare const createNewSwap: (request: RestFetcher) => (body: { inAmount: number; inAsset: SwapAsset; outAsset: SwapAsset; }) => Promise<Swap>;