UNPKG

iana-tz-json-generator-and-importer

Version:

Quickly get timezone names and metadata from the IANA into your application in the format you want.

18 lines (16 loc) 428 B
export interface GeographicAreaMap { [geographicArea: string]: { geographicAreaDisplayName: string, geographicArea: string; locationList: LocationListValue[], } } export interface LocationListValue { location: string, locationDisplayName: string, countryCodes: string[] } export interface GeographicAreaListValue { geographicArea: string, geographicAreaDisplayName: string }