@flux-control/modbus-schema
    Preparing search index...

    Type Alias BitfieldParamEntry<F>

    BitfieldParamEntry: ParamEntry<Schema.Schema<InstanceType<F>, number>> & {
        merge: (
            base: InstanceType<F>,
            patch: Readonly<Record<string, boolean | undefined>>,
        ) => InstanceType<F>;
        patch: AnyPatchClass;
    }

    A bitfield entry adds a generated patch schema (all-optional booleans) and a merge function for read-modify-write semantics.

    Type Parameters