| 1 | import { BiDiClient } from './bidi'; |
| 2 | |
| 3 | export interface ClockInstallOptions { |
| 4 | /** Initial time as epoch ms, ISO date string, or Date object. */ |
| 5 | time?: number | string | Date; |
| 6 | /** IANA timezone ID to override (e.g. "America/New_York", "Europe/London"). */ |
| 7 | timezone?: string; |
| 8 | } |
| 9 | |
| 10 | /** Normalize a time value to epoch milliseconds. */ |
| 11 | function normalizeTime(time: number | string | Date): number { |
nothing calls this directly
no outgoing calls
no test coverage detected