| 3 | const CACHE_TTL = 1000 * 60 * 60 |
| 4 | |
| 5 | interface CurrencyRatesApiResponse { |
| 6 | result?: string |
| 7 | rates?: Record<string, number> |
| 8 | time_last_update_unix?: number |
| 9 | } |
| 10 | |
| 11 | export interface CurrencyRatesPayload { |
| 12 | rates: Record<string, number> |
nothing calls this directly
no outgoing calls
no test coverage detected