UNPKG

xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

9 lines 341 B
import { Amount, MPTAmount } from '../common'; import { BaseTransaction } from './common'; export interface LoanPay extends BaseTransaction { TransactionType: 'LoanPay'; LoanID: string; Amount: Amount | MPTAmount; } export declare function validateLoanPay(tx: Record<string, unknown>): void; //# sourceMappingURL=loanPay.d.ts.map