Timezones
Enum that represents a timezone. This is a slimmed down version of all existing timezones, based on standard TZ identifier format. You can read more about that format here (opens in a new tab).
enum Timezones {
UTC = 'UTC',
GMT = 'GMT',
EST = 'America/New_York',
CST = 'America/Chicago',
MST = 'America/Denver',
PST = 'America/Los_Angeles',
AKST = 'America/Anchorage',
HST = 'Pacific/Honolulu',
CET = 'Europe/Paris',
EET = 'Europe/Athens',
JST = 'Asia/Tokyo',
KST = 'Asia/Seoul',
IST = 'Asia/Kolkata',
AEST = 'Australia/Sydney',
ACST = 'Australia/Adelaide',
AWST = 'Australia/Perth',
}