@edgible-team/sdk
    Preparing search index...

    Interface BenchmarkProgressEvent

    Replaces the CLI's stdout updates — one event per phase transition.

    interface BenchmarkProgressEvent {
        detail?: string;
        elapsedMs?: number;
        flavour: BenchmarkFlavour;
        label: string;
        phase: BenchmarkPhase;
        status: BenchmarkPhaseStatus;
    }
    Index

    Properties

    detail?: string

    Failure reason, when there is one.

    elapsedMs?: number

    Cumulative ms since the flavour's create call started.

    label: string