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.

Escrow.d.ts 501B

123456789101112131415161718
  1. import BaseLedgerEntry from './BaseLedgerEntry';
  2. export default interface Escrow extends BaseLedgerEntry {
  3. LedgerEntryType: 'Escrow';
  4. Account: string;
  5. Destination: string;
  6. Amount: string;
  7. Condition?: string;
  8. CancelAfter?: number;
  9. FinishAfter?: number;
  10. Flags: number;
  11. SourceTag?: number;
  12. DestinationTag?: number;
  13. OwnerNode: string;
  14. DestinationNode?: string;
  15. PreviousTxnID: string;
  16. PreviousTxnLgrSeq: number;
  17. }
  18. //# sourceMappingURL=Escrow.d.ts.map