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.
123456789101112131415 |
- import BaseLedgerEntry from './BaseLedgerEntry';
- export default interface DirectoryNode extends BaseLedgerEntry {
- LedgerEntryType: 'DirectoryNode';
- Flags: number;
- RootIndex: string;
- Indexes: string[];
- IndexNext?: number;
- IndexPrevious?: number;
- Owner?: string;
- TakerPaysCurrency?: string;
- TakerPaysIssuer?: string;
- TakerGetsCurrency?: string;
- TakerGetsIssuer?: string;
- }
- //# sourceMappingURL=DirectoryNode.d.ts.map
|