TS-Scribe - v1.2.0
    Preparing search index...

    Type Alias PerfTimerLap

    A single recorded segment produced by PerfTimer.lap.

    type PerfTimerLap = {
        durationMs: number;
        elapsedMs: number;
        label: string;
    }
    Index

    Properties

    durationMs: number

    Duration of this segment in milliseconds (time since the previous lap or start).

    elapsedMs: number

    Elapsed time in milliseconds from the timer's start to the end of this lap.

    label: string

    Label passed to PerfTimer.lap.