import { CountriesNumericISO } from '../constants'; import { CountryIso } from '../enums'; // At module top-level export const NumericToCountryIso: Record = Object.entries(CountriesNumericISO).reduce( (acc, [isoKey, numeric]) => { acc[numeric] = isoKey as CountryIso; return acc; }, {} as Record, );