(nextX: number | null, source?: unknown)
| 2021 | | null = null; |
| 2022 | |
| 2023 | const emitInteractionX = (nextX: number | null, source?: unknown): void => { |
| 2024 | const snapshot = Array.from(interactionXListeners); |
| 2025 | for (const cb of snapshot) cb(nextX, source); |
| 2026 | }; |
| 2027 | |
| 2028 | const setInteractionXInternal = (nextX: number | null, source?: unknown): void => { |
| 2029 | const normalized = nextX !== null && Number.isFinite(nextX) ? nextX : null; |
no outgoing calls
no test coverage detected