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.

DirectoryNode.d.ts 458B

123456789101112131415
  1. import BaseLedgerEntry from './BaseLedgerEntry';
  2. export default interface DirectoryNode extends BaseLedgerEntry {
  3. LedgerEntryType: 'DirectoryNode';
  4. Flags: number;
  5. RootIndex: string;
  6. Indexes: string[];
  7. IndexNext?: number;
  8. IndexPrevious?: number;
  9. Owner?: string;
  10. TakerPaysCurrency?: string;
  11. TakerPaysIssuer?: string;
  12. TakerGetsCurrency?: string;
  13. TakerGetsIssuer?: string;
  14. }
  15. //# sourceMappingURL=DirectoryNode.d.ts.map