country-codes-list
country-codes-list copied to clipboard
fix: enum CountryProperties is not defined at runtime in TypeScript
Fixes #36 . Now you can write the following TypeScript code without runtime error:
import countries, { CountryProperty } from "country-codes-list";
function findCountry(code: string) {
return countries.findOne(CountryProperty.countryCode, code);
}
A better solution is: #41