/** * Web Vitals Extension Entrypoint * * This file imports the web-vitals library and registers its callbacks * on the global __VTiltExtensions__ object. The main SDK checks for these * callbacks and uses them if available. * * Usage: * - Include this entrypoint in the full bundle (array.full.ts) * - Or load it dynamically via loadExternalDependency('web-vitals', callback) */ import { WebVitalsCallbacks } from "../utils/globals"; declare const vtiltWebVitalsCallbacks: WebVitalsCallbacks; export default vtiltWebVitalsCallbacks;