Skip to content

Instantly share code, notes, and snippets.

@VladislavSmolyanoy
Created October 10, 2024 13:40
Show Gist options
  • Save VladislavSmolyanoy/a1a7b2af4095b3c1e03bdb6eb623ce79 to your computer and use it in GitHub Desktop.
Save VladislavSmolyanoy/a1a7b2af4095b3c1e03bdb6eb623ce79 to your computer and use it in GitHub Desktop.
Typescript Countries String Union Type
export type Country =
| "United States"
| "Germany"
| "United Kingdom"
| "India"
| "France"
| "Italy"
| "Australia"
| "Russian Federation"
| "Afghanistan"
| "Albania"
| "Algeria"
| "American Samoa"
| "Andorra"
| "Angola"
| "Anguilla"
| "Antarctica"
| "Antigua and Barbuda"
| "Argentina"
| "Armenia"
| "Aruba"
| "Asia/Pacific Region"
| "Austria"
| "Azerbaijan"
| "Bahamas"
| "Bahrain"
| "Bangladesh"
| "Barbados"
| "Belarus"
| "Belgium"
| "Belize"
| "Benin"
| "Bermuda"
| "Bhutan"
| "Bolivia"
| "Bonaire Sint Eustatius and Saba"
| "Bosnia and Herzegovina"
| "Botswana"
| "Bouvet Island"
| "Brazil"
| "British Indian Ocean Territory"
| "Brunei Darussalam"
| "Bulgaria"
| "Burkina Faso"
| "Burundi"
| "Cambodia"
| "Cameroon"
| "Canada"
| "Cape Verde"
| "Cayman Islands"
| "Central African Republic"
| "Chad"
| "Chile"
| "China"
| "Christmas Island"
| "Cocos (Keeling) Islands"
| "Colombia"
| "Comoros"
| "Congo"
| "Congo The Democratic Republic of the"
| "Cook Islands"
| "Costa Rica"
| "Croatia"
| "Cuba"
| "Curaçao"
| "Cyprus"
| "Czech Republic"
| "Côte d'Ivoire"
| "Denmark"
| "Djibouti"
| "Dominica"
| "Dominican Republic"
| "Ecuador"
| "Egypt"
| "El Salvador"
| "Equatorial Guinea"
| "Eritrea"
| "Estonia"
| "Ethiopia"
| "Falkland Islands (Malvinas)"
| "Faroe Islands"
| "Fiji"
| "Finland"
| "French Guiana"
| "French Polynesia"
| "French Southern Territories"
| "Gabon"
| "Gambia"
| "Georgia"
| "Ghana"
| "Gibraltar"
| "Greece"
| "Greenland"
| "Grenada"
| "Guadeloupe"
| "Guam"
| "Guatemala"
| "Guernsey"
| "Guinea"
| "Guinea-Bissau"
| "Guyana"
| "Haiti"
| "Heard Island and Mcdonald Islands"
| "Holy See (Vatican City State)"
| "Honduras"
| "Hong Kong"
| "Hungary"
| "Iceland"
| "Indonesia"
| "Iran Islamic Republic Of"
| "Iraq"
| "Ireland"
| "Isle of Man"
| "Israel"
| "Jamaica"
| "Japan"
| "Jersey"
| "Jordan"
| "Kazakhstan"
| "Kenya"
| "Kiribati"
| "Korea Republic of"
| "Kuwait"
| "Kyrgyzstan"
| "Laos"
| "Latvia"
| "Lebanon"
| "Lesotho"
| "Liberia"
| "Libyan Arab Jamahiriya"
| "Liechtenstein"
| "Lithuania"
| "Luxembourg"
| "Macao"
| "Madagascar"
| "Malawi"
| "Malaysia"
| "Maldives"
| "Mali"
| "Malta"
| "Marshall Islands"
| "Martinique"
| "Mauritania"
| "Mauritius"
| "Mayotte"
| "Mexico"
| "Micronesia Federated States of"
| "Moldova Republic of"
| "Monaco"
| "Mongolia"
| "Montenegro"
| "Montserrat"
| "Morocco"
| "Mozambique"
| "Myanmar"
| "Namibia"
| "Nauru"
| "Nepal"
| "Netherlands"
| "Netherlands Antilles"
| "New Caledonia"
| "New Zealand"
| "Nicaragua"
| "Niger"
| "Nigeria"
| "Niue"
| "Norfolk Island"
| "North Korea"
| "North Macedonia"
| "Northern Mariana Islands"
| "Norway"
| "Oman"
| "Pakistan"
| "Palau"
| "Palestinian Territory Occupied"
| "Panama"
| "Papua New Guinea"
| "Paraguay"
| "Peru"
| "Philippines"
| "Pitcairn Islands"
| "Poland"
| "Portugal"
| "Puerto Rico"
| "Qatar"
| "Reunion"
| "Romania"
| "Rwanda"
| "Saint Barthélemy"
| "Saint Helena"
| "Saint Kitts and Nevis"
| "Saint Lucia"
| "Saint Martin"
| "Saint Pierre and Miquelon"
| "Saint Vincent and the Grenadines"
| "Samoa"
| "San Marino"
| "Sao Tome and Principe"
| "Saudi Arabia"
| "Senegal"
| "Serbia"
| "Serbia and Montenegro"
| "Seychelles"
| "Sierra Leone"
| "Singapore"
| "Sint Maarten"
| "Slovakia"
| "Slovenia"
| "Solomon Islands"
| "Somalia"
| "South Africa"
| "South Georgia and the South Sandwich Islands"
| "South Sudan"
| "Spain"
| "Sri Lanka"
| "Sudan"
| "Suriname"
| "Svalbard and Jan Mayen"
| "Swaziland"
| "Sweden"
| "Switzerland"
| "Syrian Arab Republic"
| "Taiwan"
| "Tajikistan"
| "Tanzania United Republic of"
| "Thailand"
| "Timor-Leste"
| "Togo"
| "Tokelau"
| "Tonga"
| "Trinidad and Tobago"
| "Tunisia"
| "Turkey"
| "Turkmenistan"
| "Turks and Caicos Islands"
| "Tuvalu"
| "Uganda"
| "Ukraine"
| "United Arab Emirates"
| "United States Minor Outlying Islands"
| "Uruguay"
| "Uzbekistan"
| "Vanuatu"
| "Venezuela"
| "Vietnam"
| "Virgin Islands British"
| "Virgin Islands U.S."
| "Wallis and Futuna"
| "Western Sahara"
| "Yemen"
| "Zambia"
| "Zimbabwe"
| "Åland Islands";
@VladislavSmolyanoy
Copy link
Author

Sorted alphabetically, with some of the more common countries first.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment