()
| 16 | type MetricSink = (metric: PerformanceMetric) => void; |
| 17 | |
| 18 | let sink: MetricSink = () => {}; |
| 19 | |
| 20 | /** Register a custom analytics sink (e.g. PostHog, Datadog, console). */ |
| 21 | export function setMetricSink(fn: MetricSink): void { |
no outgoing calls
no test coverage detected