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.

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

§Properties

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

§Methods

§
toJSON(): any
[src]