interface Performance
implements EventTarget
import { type Performance } from "https://deno.land/x/evt@v2.4.19/lib/types/lib.dom.ts";
Provides access to performance-related information for the current page. It's part of the High Resolution Time API, but is enhanced by the Performance Timeline API, the Navigation Timing API, the User Timing API, and the Resource Timing API.
Properties
onresourcetimingbufferfull: ((this: Performance, ev: Event) => any) | null
readonly
deprecated
timing: PerformanceTimingMethods
getEntries(): PerformanceEntryList
getEntriesByName(name: string, type?: string): PerformanceEntryList
getEntriesByType(type: string): PerformanceEntryList
addEventListener<K extends keyof PerformanceEventMap>(): void
type: K,
listener: (this: Performance, ev: PerformanceEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof PerformanceEventMap>(): void
type: K,
listener: (this: Performance, ev: PerformanceEventMap[K]) => any,
options?: boolean | EventListenerOptions,