Pilates
    Preparing search index...

    Interface LayoutProfile

    The data useLayoutProfiler returns.

    interface LayoutProfile {
        history: readonly LayoutTrace[];
        last: LayoutTrace | null;
        totals: Readonly<Record<LayoutPath, number>>;
    }
    Index

    Properties

    Properties

    history: readonly LayoutTrace[]

    Recent traces, oldest first, capped at 60.

    last: LayoutTrace | null

    The most recent LayoutTrace, or null before the first captured layout.

    totals: Readonly<Record<LayoutPath, number>>

    Cumulative count of each engine path since the hook mounted.