Files
DefinitelyTyped/types/localized-countries/localized-countries-tests.ts
coderslagoon 8f7dffc7a5 typings for localized-countries (#18809)
Complete and tested. The module has two flavors, one for browser and one
For node. The typings cover both of them.
2017-08-14 11:09:49 -07:00

11 lines
238 B
TypeScript

import localizedCountries = require("localized-countries");
localizedCountries("de").get("DE");
// => "Deutschland"
localizedCountries("en").get("US");
// => "United States"
localizedCountries("de").object()["DE"];
// => "Deutschland"