@mikuroxina/mini-fn
    Preparing search index...

    Type Alias HandlerPayload<T>

    A payload of Handler, the decoded event message of event handlers.

    type HandlerPayload<T> = {
        message: T;
        preventDefault: boolean;
        stopPropagation: boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    message: T

    The passing custom value.

    preventDefault: boolean

    Whether the renderer should prevent default behavior of this event.

    stopPropagation: boolean

    Whether the renderer should stop propagation of this event.