UNPKG

timezone-data

Version:

This is a list of time zones from release 2022b of the tz database.

15 lines (11 loc) 230 B
import tz from "./tz-list.json"; export interface TimeZone { tz: string label?: string offsetSTD: string offsetDST?: string tzNameSTD?: string tzNameDST?: string linkTo?: string } export default tz as TimeZone[];