@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API
16 lines • 506 B
TypeScript
import type { KyInstance } from 'ky';
export interface WithdrawInternalInput {
amount: number;
toUsername: string;
}
export interface WithdrawInternalOutput {
id: string;
createdAt: string;
fromUid: string;
toUid: string;
amount: number;
}
type WithdrawInternal = (input: WithdrawInternalInput) => Promise<WithdrawInternalOutput>;
export declare const createWithdrawInternal: (instance: KyInstance) => WithdrawInternal;
export {};
//# sourceMappingURL=withdraw-internal.d.ts.map