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

    Interface GasThresholdSpec

    Thresholds for one gas dimension, either as one pair for every feature or split per GasFeatureKey. Per bound, a feature entry wins over default, which wins over the direct pair. A bound nowhere given never triggers.

    interface GasThresholdSpec {
        critical?: number;
        default?: Partial<GasThresholdPair>;
        problematic?: number;
        readonly [feature: string]: number | Partial<GasThresholdPair> | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    Index
    critical?: number

    the shared critical bound, for every feature without a more specific entry

    default?: Partial<GasThresholdPair>

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

    problematic?: number

    the shared problematic bound, for every feature without a more specific entry