File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11617,6 +11617,12 @@ interface PerformanceNavigation {
11617
11617
readonly TYPE_RELOAD: number;
11618
11618
readonly TYPE_RESERVED: number;
11619
11619
}
11620
+
11621
+ interface PerformanceServerTiming {
11622
+ readonly name: string;
11623
+ readonly duration: number;
11624
+ readonly description: string;
11625
+ }
11620
11626
11621
11627
declare var PerformanceNavigation: {
11622
11628
prototype: PerformanceNavigation;
@@ -11639,6 +11645,7 @@ interface PerformanceNavigationTiming extends PerformanceResourceTiming {
11639
11645
readonly type: NavigationType;
11640
11646
readonly unloadEventEnd: number;
11641
11647
readonly unloadEventStart: number;
11648
+ readonly serverTiming?: PerformanceServerTiming[];
11642
11649
toJSON(): any;
11643
11650
}
11644
11651
You can’t perform that action at this time.
0 commit comments