Interface PerformanceEntry
interface PerformanceEntry {
duration: number;
entryType: string;
name: string;
startTime: number;
toJSON(): any;
}
duration: number;
entryType: string;
name: string;
startTime: number;
toJSON(): any;
}
Hierarchy
- PerformanceEntry (view full)
Properties
Readonly
duration
duration: number
Readonly
entryType
entryType : string
Readonly
name
name: string
Readonly
startTime
startTime : number
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).
MDN Reference