Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>PerformanceEntry

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface PerformanceEntry
import { type PerformanceEntry } from "https://deno.land/x/windmill@v1.73.1/node_modules/evt/lib/types/lib.dom.d.ts";

Encapsulates a single performance metric that is part of the performance timeline. A performance entry can be directly created by making a performance mark or measure (for example by calling the mark() method) at an explicit point in an application. Performance entries are also created in indirect ways such as loading a resource (such as an image).

Properties

readonly
duration: number
readonly
entryType: string
readonly
name: string
readonly
startTime: number

Methods

toJSON(): any