country-state-city
Version:
Library for fetching Country, its States and Cities
40 lines (39 loc) • 942 B
TypeScript
export interface Timezones {
zoneName: string;
gmtOffset: number;
gmtOffsetName: string;
abbreviation: string;
tzName: string;
}
export interface ICountry {
name: string;
phonecode: string;
isoCode: string;
flag: string;
currency: string;
latitude: string;
longitude: string;
timezones?: Timezones[];
getAllCountries?(): ICountry[];
getCountryByCode?(): ICountry;
}
export interface IState {
name: string;
isoCode: string;
countryCode: string;
latitude?: string | null;
longitude?: string | null;
getStatesOfCountry?(): IState[];
getStateByCodeAndCountry?(): IState;
getStateByCode?(): IState;
}
export interface ICity {
name: string;
countryCode: string;
stateCode: string;
latitude?: string | null;
longitude?: string | null;
getAllCities?(): ICity[];
getCitiesOfState?(): ICity[];
getCitiesOfCountry?(): ICity[];
}