deno / 1.23.2 / ~ / performancemark.html /

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–2022 the Deno authors
https://doc.deno.land/deno/stable/~/PerformanceMark