You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -11547,6 +11548,18 @@ declare var PerformanceResourceTiming: {
11547
11548
new(): PerformanceResourceTiming;
11548
11549
};
11549
11550
11551
+
interface PerformanceServerTiming {
11552
+
readonly description: string;
11553
+
readonly duration: number;
11554
+
readonly name: string;
11555
+
toJSON(): any;
11556
+
}
11557
+
11558
+
declare var PerformanceServerTiming: {
11559
+
prototype: PerformanceServerTiming;
11560
+
new(): PerformanceServerTiming;
11561
+
};
11562
+
11550
11563
/** A legacy interface kept for backwards compatibility and contains properties that offer performance timing information for various events which occur during the loading and use of the current page. You get a PerformanceTiming object describing your page using the window.performance.timing property.
11551
11564
* @deprecated This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.
0 commit comments