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

    Type Alias PerfTimerResult

    Result returned by PerfTimer.stop.

    type PerfTimerResult = {
        laps: PerfTimerLap[];
        totalMs: number;
    }
    Index

    Properties

    Properties

    laps: PerfTimerLap[]

    All recorded laps in the order they were captured.

    totalMs: number

    Total elapsed time in milliseconds from start to PerfTimer.stop.