deno.com

class PerformanceEntry

The constructor of this class is not exposed to users directly.

Constructors #

#PerformanceEntry()
new

Properties #

#detail:
NodeGCPerformanceDetail
| unknown
| undefined
readonly
abstract

Additional detail specific to the entryType.

#duration: number
readonly

The total number of milliseconds elapsed for this entry. This value will not be meaningful for all Performance Entry types.

The type of the performance entry. It may be one of:

  • 'node' (Node.js only)
  • 'mark' (available on the Web)
  • 'measure' (available on the Web)
  • 'gc' (Node.js only)
  • 'function' (Node.js only)
  • 'http2' (Node.js only)
  • 'http' (Node.js only)
#name: string
readonly

The name of the performance entry.

#startTime: number
readonly

The high resolution millisecond timestamp marking the starting time of the Performance Entry.

Methods #

#toJSON(): any