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

    Type Alias GasOverrides

    Gas bounds for a single call, keyed by GasFeatureKey, measured from that call:

    analyzer.query([...], { gas: { slicer: { critical: 30_000 } } });
    

    Naming a feature enables gas for it even when config.gas.features disables it; pass factor: 0 to keep it off.

    type GasOverrides = {
        default?: GasFeatureOverride;
        readonly [feature: string]: GasFeatureOverride | undefined;
    }

    Indexable

    Index

    Bounds for the features that have no entry of their own.