@get-milano/core 2.1.0
    Preparing search index...

    Interface MilanoUserInteraction

    One user interaction, delivered to the engine's user-interaction observer. Records pass everything through unredacted: Milano implements no tracker, the receiving host owns the data.

    interface MilanoUserInteraction {
        dispatch: number | null;
        kind: MilanoUserInteractionKind;
        name: string | null;
        node: string | null;
        value: MilanoValue | null;
        viewIdentity: string;
    }
    Index
    dispatch: number | null

    The dispatch number, when the record is about a custom action dispatch (actionDispatched, completionSucceeded, completionFailed): the same number the action carried.

    name: string | null

    The event or action name, when one applies.

    node: string | null

    The node's id or canonical path, when anchored to a node.

    value: MilanoValue | null

    The interaction's data: the emission payload, the captured action parameters, the validated result or failure payload of a completion, the document metadata for viewBuilt, or whatever a renderer supplies for widget kinds.

    viewIdentity: string