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.

16 lines (15 loc) 402 B
export interface GeographicAreaMap { [geographicArea: string]: { geographicAreaDisplayName: string; geographicArea: string; locationList: LocationListValue[]; }; } export interface LocationListValue { location: string; locationDisplayName: string; } export interface GeographicAreaListValue { geographicArea: string; geographicAreaDisplayName: string; }