(client: AnalyticsClient | null)
| 205 | * non-React hosts (or tests). Pass `null` to restore the no-op default. |
| 206 | */ |
| 207 | export const setAnalyticsClient = (client: AnalyticsClient | null): void => { |
| 208 | currentAnalyticsClient = client; |
| 209 | }; |
| 210 | |
| 211 | /** |
| 212 | * Record one product event. Safe to call from anywhere (React handlers, |