(fn: () => void)
| 157 | // global once, up front). |
| 158 | function seekAllAdaptersInBrowser(tt: number): void { |
| 159 | const tryCall = (fn: () => void): void => { |
| 160 | try { |
| 161 | fn(); |
| 162 | } catch { |
| 163 | /* best-effort */ |
| 164 | } |
| 165 | }; |
| 166 | const w = window as unknown as { |
| 167 | __player?: { renderSeek?: (t: number) => void; seek?: (t: number) => void }; |
| 168 | __hfThreeTime?: number; |
no outgoing calls
no test coverage detected