(props: { kind: OutputResolutionIssueKind })
| 314 | // `OutputResolutionIssueKind` (aspect-mismatch / alpha-incompatible / etc.), |
| 315 | // typed to the union so the metric can never carry free text. |
| 316 | export function trackRenderPreflightRejected(props: { kind: OutputResolutionIssueKind }): void { |
| 317 | trackEvent("render_preflight_rejected", { kind: props.kind }); |
| 318 | } |
| 319 | |
| 320 | export function trackCliError(props: { |
| 321 | error_name: string; |
no test coverage detected