Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
485 B
Plaintext
16 lines
485 B
Plaintext
declare global {
|
|
interface Performance {
|
|
interactionCount: number;
|
|
}
|
|
}
|
|
/**
|
|
* Returns the `interactionCount` value using the native API (if available)
|
|
* or the polyfill estimate in this module.
|
|
*/
|
|
export declare const getInteractionCount: () => number;
|
|
/**
|
|
* Feature detects native support or initializes the polyfill if needed.
|
|
*/
|
|
export declare const initInteractionCountPolyfill: () => void;
|
|
//# sourceMappingURL=interactionCountPolyfill.d.ts.map
|