()
| 11 | private isEnabledCallback: (() => boolean) | null = null; |
| 12 | |
| 13 | constructor() { |
| 14 | // Initialize on first user interaction |
| 15 | this.initializeOnUserInteraction(); |
| 16 | } |
| 17 | |
| 18 | private initializeOnUserInteraction() { |
| 19 | if (typeof window === 'undefined' || typeof document === 'undefined') { |
nothing calls this directly
no test coverage detected