Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PerformanceEntry

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).

interface PerformanceEntry {
readonly duration: DOMHighResTimeStamp;
readonly entryType: string;
readonly name: string;
readonly startTime: DOMHighResTimeStamp;
toJSON(): any;
}
var PerformanceEntry: {
prototype: PerformanceEntry;
}
;

§Properties

§
readonly duration: DOMHighResTimeStamp
[src]
§
readonly entryType: string
[src]
§
readonly name: string
[src]
§
readonly startTime: DOMHighResTimeStamp
[src]

§Methods

§
toJSON(): any
[src]