UNPKG

highlight.run

Version:

Open source, fullstack monitoring. Capture frontend errors, record server side logs, and visualize what broke with session replay.

19 lines (18 loc) 473 B
interface PerformanceMethods { /** * Returns data that doesn't change during the session. */ getDeviceDetails?: () => { deviceMemory: number; }; /** * Returns data that can change during the session. */ getCurrentDeviceDetails?: () => { jsHeapSizeLimit: number; totalJSHeapSize: number; usedJSHeapSize: number; }; } export declare const getPerformanceMethods: () => PerformanceMethods; export {};