Jump to headingPerformance.measure(name: string,startMark?: string,endMark?: string,): PerformanceMeasureCreates a new PerformanceMeasure entry in the Performance Timeline. A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure', and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark.
The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist, then startMark is set to timeOrigin by default.
The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown.
Parameters Jump to heading
Jump to headingname: stringJump to headingstartMark: stringJump to headingendMark: stringReturn Type Jump to heading
The PerformanceMeasure entry that was created
Jump to headingPerformance.measure(name: string,options: MeasureOptions,): PerformanceMeasureParameters Jump to heading
Jump to headingname: stringJump to headingoptions: MeasureOptions