| 14 | * Time zone change record. |
| 15 | */ |
| 16 | export interface TZChange { |
| 17 | /** Date time the change occurs */ |
| 18 | date: Date; |
| 19 | /** Offset change in minutes */ |
| 20 | change: number; |
| 21 | /** New UTC offset in minutes */ |
| 22 | offset: number; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * The function scans the time zone for changes in the given interval. |
nothing calls this directly
no outgoing calls
no test coverage detected