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.

Amendments.d.ts 369B

123456789101112131415
  1. import BaseLedgerEntry from './BaseLedgerEntry';
  2. interface Majority {
  3. Majority: {
  4. Amendment: string;
  5. CloseTime: number;
  6. };
  7. }
  8. export default interface Amendments extends BaseLedgerEntry {
  9. LedgerEntryType: 'Amendments';
  10. Amendments?: string[];
  11. Majorities?: Majority[];
  12. Flags: 0;
  13. }
  14. export {};
  15. //# sourceMappingURL=Amendments.d.ts.map