Package-level declarations

Types

Link copied to clipboard
sealed class EventCounts : ReadonlyMap<EventType<*>, JsInt>
Link copied to clipboard
sealed interface NavigationTimingType
Link copied to clipboard

The Performance interface provides access to performance-related information for the current page.

Link copied to clipboard
open class PerformanceEntry

The PerformanceEntry object encapsulates a single performance metric that is part of the browser's performance timeline.

Link copied to clipboard
open class PerformanceMark(markName: String, markOptions: PerformanceMarkOptions = definedExternally) : PerformanceEntry

PerformanceMark is an interface for PerformanceEntry objects with an entryType of "mark".

Link copied to clipboard
Link copied to clipboard

PerformanceMeasure is an abstract interface for PerformanceEntry objects with an entryType of "measure". Entries of this type are created by calling performance.measure() to add a named DOMHighResTimeStamp (the measure) between two marks to the browser's performance timeline.

Link copied to clipboard
Link copied to clipboard

The PerformanceObserver interface is used to observe performance measurement events and be notified of new performance entries as they are recorded in the browser's performance timeline.

Link copied to clipboard

The PerformanceObserverEntryList interface is a list of performance events that were explicitly observed via the observe() method.

Link copied to clipboard
Link copied to clipboard

The PerformanceResourceTiming interface enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources. An application can use the timing metrics to determine, for example, the length of time it takes to fetch a specific resource, such as an XMLHttpRequest, , image, or script.

Link copied to clipboard

The PerformanceServerTiming interface surfaces server metrics that are sent with the response in the Server-Timing HTTP header.