(timeZone: string)
| 147 | |
| 148 | /** Sets the time zone identifier for the current user. */ |
| 149 | export function setLocalTimeZone(timeZone: string): void { |
| 150 | localTimeZoneOverride = true; |
| 151 | localTimeZone = timeZone; |
| 152 | } |
| 153 | |
| 154 | /** Resets the time zone identifier for the current user. */ |
| 155 | export function resetLocalTimeZone(): void { |
no outgoing calls
no test coverage detected