@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API
15 lines • 646 B
TypeScript
import type { KyInstance } from 'ky';
import type { PaginatedResponse, PaginationInput } from '../../types.js';
export type GetInternalDepositsInput = PaginationInput;
interface InternalDeposit {
amount: number;
createdAt: string;
fromUsername: string;
id: string;
success: boolean | null;
}
export type GetInternalDepositsOutput = PaginatedResponse<InternalDeposit>;
type GetInternalDeposits = (input?: GetInternalDepositsInput) => Promise<GetInternalDepositsOutput>;
export declare const createGetInternalDeposits: (instance: KyInstance) => GetInternalDeposits;
export {};
//# sourceMappingURL=get-internal-deposits.d.ts.map