@eagleoutice/flowr - v2.13.14
    Preparing search index...

    Interface GasFeatureOverride

    Gas bounds for one feature within a single call, see GasOverrides.

    interface GasFeatureOverride {
        critical?: number;
        factor?: number;
        memory?: Partial<GasThresholdPair>;
        problematic?: number;
        timeMs?: Partial<GasThresholdPair>;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index
    critical?: number

    Elapsed ms, shorthand for timeMs.critical.

    factor?: number

    Sensitivity factor, defaulting to the configured one, or 1 if the feature is disabled.

    memory?: Partial<GasThresholdPair>

    Overrides config.gas.thresholds.memory for this call.

    problematic?: number

    Elapsed ms, shorthand for timeMs.problematic.

    timeMs?: Partial<GasThresholdPair>

    Overrides config.gas.thresholds.timeMs for this call.