(
event: "CLI_REPORT_VIEW" | "SERVED_REPORT_VIEW",
)
| 131 | }; |
| 132 | |
| 133 | export const trackLocalReportView = ( |
| 134 | event: "CLI_REPORT_VIEW" | "SERVED_REPORT_VIEW", |
| 135 | ) => { |
| 136 | if (!window.dpLocalViewEvent) { |
| 137 | return; |
| 138 | } |
| 139 | asyncDPTrackEvent( |
| 140 | event, |
| 141 | { |
| 142 | author_id: window.dpAuthorId, |
| 143 | report_id: window.dpReportId, |
| 144 | }, |
| 145 | false, |
| 146 | ); |
| 147 | }; |
nothing calls this directly
no test coverage detected