Skip to content

Type Alias: TimezoneAbbreviation

ts
type TimezoneAbbreviation = 
  | "ACST"
  | "AEST"
  | "AKST"
  | "AST"
  | "AWST"
  | "BRT"
  | "BST"
  | "CAT"
  | "CET"
  | "CST"
  | "EAT"
  | "EEST"
  | "EET"
  | "EST"
  | "GST"
  | "HKT"
  | "HST"
  | "ICT"
  | "IST"
  | "JST"
  | "KST"
  | "MSK"
  | "MST"
  | "NZST"
  | "PKT"
  | "PST"
  | "SGT"
  | "WAT"
  | "WEST"
  | "WET"
  | "WIB";

Defined in: src/utils/getTimestamp.ts:103

Common timezone abbreviations mapped to their IANA identifiers.

Note: Some abbreviations are ambiguous (e.g. IST can mean India, Israel, or Ireland). The mapping picks the most commonly intended timezone.

Matterway Assistant SDK Documentation