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.

settings.d.ts 524B

1234567891011
  1. import { FormattedSettings } from '../common/types/objects';
  2. import { RippleAPI } from '..';
  3. import { Settings } from '../common/constants';
  4. export declare type SettingsOptions = {
  5. ledgerVersion?: number | 'validated' | 'closed' | 'current';
  6. };
  7. export declare function parseAccountFlags(value: number, options?: {
  8. excludeFalse?: boolean;
  9. }): Settings;
  10. export declare function getSettings(this: RippleAPI, address: string, options?: SettingsOptions): Promise<FormattedSettings>;
  11. //# sourceMappingURL=settings.d.ts.map