()
| 454 | } |
| 455 | |
| 456 | function createThemeAndWatchForUpdates() { |
| 457 | createStaticStyleOverrides(); |
| 458 | |
| 459 | if (!documentIsVisible() && !theme!.immediateModify) { |
| 460 | setDocumentVisibilityListener(runDynamicStyle); |
| 461 | } else { |
| 462 | runDynamicStyle(); |
| 463 | } |
| 464 | |
| 465 | changeMetaThemeColorWhenAvailable(theme!); |
| 466 | } |
| 467 | |
| 468 | function unwrap<T>(value: T): T { |
| 469 | return (value as any)?.wrappedJSObject ?? value; |
no test coverage detected