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

    Interface MilanoAction

    A dispatched custom action, delivered as data.

    interface MilanoAction {
        dispatch: number;
        dispatchId: string;
        name: string;
        parameters: Readonly<Record<string, MilanoValue>>;
        viewIdentity: string;
    }
    Index
    dispatch: number

    The dispatch's position among the view's custom action dispatches, counting from zero in delivery order (state and actions spec, Dispatch identity). Deterministic; the conformance suite pins it.

    dispatchId: string

    A string unique among every dispatch of every view in the process, whatever the views' labels; its format is opaque. The host's idempotency key toward whatever the handler calls.

    name: string
    parameters: Readonly<Record<string, MilanoValue>>
    viewIdentity: string