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

    Interface ResolveOnlyResult

    Successful Dispatcher.resolveOnly prediction: the binding + action that would fire if event were dispatched for real. action is the resolved descriptor so callers (the hover-cursor pump) can read metadata like Action.cursor without a second registry lookup.

    interface ResolveOnlyResult {
        action: Action;
        actionId: string;
        ownerToolId: string | null;
        scope: BindingScope;
    }
    Index

    Properties

    action: Action
    actionId: string
    ownerToolId: string | null

    Tool id owning the winning binding; null for ambient action bindings.