您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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