UNPKG

@aller/blink

Version:

A library for tracking user behaviour.

9 lines (8 loc) 345 B
import type { BlinkEvent } from '../types'; import type { WebVitalsReport } from '../main'; import { Page } from '../selectors/get-page-state'; export interface PrepareChromeWebVitalsInput { page: Page; webVitals: WebVitalsReport; } export default function prepareCwvEvent({ page, webVitals, }: PrepareChromeWebVitalsInput): BlinkEvent;