TimezoneString: "Z" | `${"+" | "-"}${number}${`:${number}` | ""}`

A string representation of a timezone. The minutes part is optional. Can either be the UTC declarator Z or a timezone offset.

See

https://datatracker.ietf.org/doc/html/rfc6350#section-4

Example

"Z"
"-05:00"
"+05"

Generated using TypeDoc