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

    Interface FlowrGasConfig

    Gas configuration embedded in FlowrConfig.gas.

    Each entry in features is a sensitivity factor for a named analysis feature (see GasFeatureKey for the recognised keys):

    • 0 / absent - disabled for that feature, zero overhead.
    • 1 - normal sensitivity, thresholds in thresholds apply as-is.
    • N - N times as sensitive, effectively divides each threshold by N.

    See the Gas (Resource Guard) wiki section.

    interface FlowrGasConfig {
        features: Record<string, number | undefined>;
        thresholds: FlowrGasThresholds;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of FlowrGasConfig
    Index

    Properties

    Properties

    features: Record<string, number | undefined>

    Per-feature sensitivity factors. Missing or 0 disables checking with zero overhead.

    thresholds: FlowrGasThresholds

    Shared thresholds scaled by each feature factor before comparison.