@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API
10 lines • 434 B
TypeScript
import type { KyInstance } from 'ky';
import type { FuturesClosedTrade } from '../../../types.js';
export interface FuturesIsolatedCloseTradeInput {
id: string;
}
export type FuturesIsolatedCloseOutput = FuturesClosedTrade;
type Close = (input: FuturesIsolatedCloseTradeInput) => Promise<FuturesIsolatedCloseOutput>;
export declare const createClose: (instance: KyInstance) => Close;
export {};
//# sourceMappingURL=close.d.ts.map