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

    Interface Conflict

    Two or more tools declare the same exact (phase, gesture, arg, target, modifiers) tuple — the dispatcher's slot precedence picks one arbitrarily (well, deterministically by slot order, but the author probably didn't intend the duplication).

    interface Conflict {
        arg: string | undefined;
        gesture: GestureName;
        modifiers: ParsedModifiers;
        phase: "initial" | "engaged" | "any";
        target: string | undefined;
        toolIds: string[];
    }
    Index

    Properties

    arg: string | undefined
    gesture: GestureName
    modifiers: ParsedModifiers
    phase: "initial" | "engaged" | "any"
    target: string | undefined
    toolIds: string[]

    All tool ids that registered the same tuple. At least 2 by construction. Order matches the input tools[] order.