We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d52565b commit af972c3Copy full SHA for af972c3
baselines/dom.generated.d.ts
@@ -11617,6 +11617,12 @@ interface PerformanceNavigation {
11617
readonly TYPE_RELOAD: number;
11618
readonly TYPE_RESERVED: number;
11619
}
11620
+
11621
+interface PerformanceServerTiming {
11622
+ readonly name: string;
11623
+ readonly duration: number;
11624
+ readonly description: string;
11625
+}
11626
11627
declare var PerformanceNavigation: {
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
0 commit comments