export enum Country { Denmark = "Denmark", Finland = "Finland", Germany = "Germany", Norway = "Norway", Poland = "Poland", Sweden = "Sweden", } export const CountryCode: Record = { [Country.Denmark]: "DK", [Country.Finland]: "FI", [Country.Germany]: "DE", [Country.Norway]: "NO", [Country.Poland]: "PL", [Country.Sweden]: "SE", }