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
@@ -11697,6 +11698,18 @@ declare var PerformanceResourceTiming: {
11697
11698
new(): PerformanceResourceTiming;
11698
11699
};
11699
11700
11701
+
interface PerformanceServerTiming {
11702
+
readonly description: string;
11703
+
readonly duration: number;
11704
+
readonly name: string;
11705
+
toJSON(): any;
11706
+
}
11707
+
11708
+
declare var PerformanceServerTiming: {
11709
+
prototype: PerformanceServerTiming;
11710
+
new(): PerformanceServerTiming;
11711
+
};
11712
+
11700
11713
/** 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.
11701
11714
* @deprecated This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.
0 commit comments