We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f235f commit 5807e2dCopy full SHA for 5807e2d
packages/tracing-internal/src/browser/instrument.ts
@@ -20,6 +20,13 @@ interface PerformanceEntry {
20
readonly startTime: number;
21
toJSON(): Record<string, unknown>;
22
}
23
+interface PerformanceEventTiming extends PerformanceEntry {
24
+ processingStart: DOMHighResTimeStamp;
25
+ processingEnd: DOMHighResTimeStamp;
26
+ duration: DOMHighResTimeStamp;
27
+ cancelable?: boolean;
28
+ target?: Element;
29
+}
30
31
interface Metric {
32
/**
0 commit comments