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.

ledger.d.ts 433B

123456789101112
  1. import { FormattedLedger } from './parse/ledger';
  2. import { RippleAPI } from '..';
  3. export declare type GetLedgerOptions = {
  4. ledgerHash?: string;
  5. ledgerVersion?: number;
  6. includeAllData?: boolean;
  7. includeTransactions?: boolean;
  8. includeState?: boolean;
  9. };
  10. declare function getLedger(this: RippleAPI, options?: GetLedgerOptions): Promise<FormattedLedger>;
  11. export default getLedger;
  12. //# sourceMappingURL=ledger.d.ts.map