CmpStr - v3.2.1
    Preparing search index...

    Interface ProfilerEntry<T>

    ProfilerEntry represents a single profiling result, including execution time, memory usage, the result of the profiled function, and optional metadata.

    interface ProfilerEntry<T> {
        mem: number;
        meta?: Record<string, any>;
        res: T;
        time: number;
    }

    Type Parameters

    • T

      The type of the profiled result

    Index

    Properties

    Properties

    mem: number
    meta?: Record<string, any>
    res: T
    time: number