weasel API - v0.8.0
    Preparing search index...

    Interface WheelSpec

    Wheel-event gesture. direction filters by deltaY sign; default '*'.

    • 'up' → matches only deltaY < 0
    • 'down' → matches only deltaY > 0
    • '*' → matches either sign (default; universal-wildcard convention)
    interface WheelSpec {
        direction?: "*" | "up" | "down";
        kind: "wheel";
        mods?: Partial<
            {
                alt: boolean
                | "optional";
                ctrl: boolean | "optional";
                meta: boolean | "optional";
                mod: boolean | "optional";
                shift: boolean | "optional";
            },
        >;
        phase?: PhaseSpec;
    }
    Index

    Properties

    direction?: "*" | "up" | "down"
    kind: "wheel"
    mods?: Partial<
        {
            alt: boolean
            | "optional";
            ctrl: boolean | "optional";
            meta: boolean | "optional";
            mod: boolean | "optional";
            shift: boolean | "optional";
        },
    >
    phase?: PhaseSpec