@turbowarp/types-tw
    Preparing search index...

    Interface Profiler

    interface Profiler {
        _stack: ProfilerFrame[];
        counters: ProfilerFrame[];
        increments: ProfilerFrame[];
        nullFrame: ProfilerFrame;
        onFrame: FrameCallback;
        records: unknown[];
        START: 0;
        STOP: 1;
        frame(id: string, arg: unknown): ProfilerFrame;
        idByName(name: string): number;
        increment(id: number): void;
        nameById(id: number): string;
        reportFrames(): void;
        start(id: number, arg: unknown): void;
        stop(): void;
    }
    Index

    Properties

    _stack: ProfilerFrame[]
    counters: ProfilerFrame[]
    increments: ProfilerFrame[]
    nullFrame: ProfilerFrame
    onFrame: FrameCallback
    records: unknown[]
    START: 0
    STOP: 1

    Methods