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.

utils.d.ts 715B

12345678910
  1. import { Memo } from '../../common/types/objects';
  2. declare function adjustQualityForXRP(quality: string, takerGetsCurrency: string, takerPaysCurrency: string): string;
  3. declare function parseQuality(quality?: number | null): number | undefined;
  4. declare function parseTimestamp(rippleTime?: number | null): string | undefined;
  5. declare function isPartialPayment(tx: any): boolean;
  6. declare function parseOutcome(tx: any): any | undefined;
  7. declare function hexToString(hex: string): string | undefined;
  8. declare function parseMemos(tx: any): Array<Memo> | undefined;
  9. export { parseQuality, parseOutcome, parseMemos, hexToString, parseTimestamp, adjustQualityForXRP, isPartialPayment };
  10. //# sourceMappingURL=utils.d.ts.map