You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
582 B

// Type definitions for countries-list
// Project: countries-list
// Definitions by: dmythro <https://github.com/dmythro>
/// <reference path="index.d.ts" />
export const continents: TContinents
export const countries: TCountries
export const languages: TLanguages
export const languagesAll: TLanguages
export function getEmojiFlag(countryCode: TCountryCode): string
declare global {
interface Window {
Countries: {
continents: TContinents,
countries: TCountries,
languages: TLanguages,
getEmojiFlag(countryCode: TCountryCode): string,
}
}
}