You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

payment.d.ts 647B

12345678910111213141516
  1. import { Instructions, Prepare } from './types';
  2. import { Adjustment, MaxAdjustment, MinAdjustment, Memo } from '../common/types/objects';
  3. import { RippleAPI } from '..';
  4. export interface Payment {
  5. source: Adjustment | MaxAdjustment;
  6. destination: Adjustment | MinAdjustment;
  7. paths?: string;
  8. memos?: Array<Memo>;
  9. invoiceID?: string;
  10. allowPartialPayment?: boolean;
  11. noDirectRipple?: boolean;
  12. limitQuality?: boolean;
  13. }
  14. declare function preparePayment(this: RippleAPI, address: string, payment: Payment, instructions?: Instructions): Promise<Prepare>;
  15. export default preparePayment;
  16. //# sourceMappingURL=payment.d.ts.map