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