server-timing.idl (569B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Server Timing (https://w3c.github.io/server-timing/) 5 6 [Exposed=(Window,Worker)] 7 interface PerformanceServerTiming { 8 readonly attribute DOMString name; 9 readonly attribute DOMHighResTimeStamp duration; 10 readonly attribute DOMString description; 11 [Default] object toJSON(); 12 }; 13 14 [Exposed=(Window,Worker)] 15 partial interface PerformanceResourceTiming { 16 readonly attribute FrozenArray<PerformanceServerTiming> serverTiming; 17 };