Skip to content

Instantly share code, notes, and snippets.

@CharlieBrownCharacter
Last active May 11, 2020 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CharlieBrownCharacter/4c5f56f518fabe584532fda37b34ebf7 to your computer and use it in GitHub Desktop.
Save CharlieBrownCharacter/4c5f56f518fabe584532fda37b34ebf7 to your computer and use it in GitHub Desktop.
Typescript European Union Countries Enumeration
enum EuropeanUnionCountries {
Austria = 'AT',
Belgium = 'BE',
Bulgaria = 'BG',
Croatia = 'HR',
Cyprus = 'CY',
CzechRepublic = 'CZ',
Denmark = 'DK',
Estonia = 'EE',
Finland = 'FI',
France = 'FR',
Germany = 'DE',
Greece = 'GR',
Hungary = 'HU',
Ireland = 'IE',
Italy = 'IT',
Lithuania = 'LT',
Luxembourg = 'LU',
Latvia = 'LV',
Malta = 'MT',
Netherlands = 'NL',
Poland = 'PL',
Portugal = 'PT',
Romania = 'RO',
Slovakia = 'SK',
Slovenia = 'SI',
Spain = 'ES',
Sweden = 'SE',
UnitedKingdom = 'GB',
Ceuta_Melilla = 'EA',
Canary_Islands = 'IC',
}
export default EuropeanUnionCountries;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment