W3cubDocs

/Deno

PerformanceMark

PerformanceMark is an abstract interface for PerformanceEntry objects with an entryType of "mark". Entries of this type are created by calling performance.mark() to add a named DOMHighResTimeStamp (the mark) to the performance timeline.

class PerformanceMark extends PerformanceEntry {
constructor(name: string, options?: PerformanceMarkOptions);
readonly detail: any;
readonly entryType: "mark";
}

Extends

PerformanceEntry

Constructors

new PerformanceMark(name: string, options?: PerformanceMarkOptions)

Properties

detail: any
entryType: "mark"

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/PerformanceMark