Interface CallParentEventMessage

Request the SDK to call a parent event with the given name and payload

interface CallParentEventMessage {
    payload: {
        args?: any[];
        event: string;
    };
    type: CALL_PARENT_EVENT;
}

Hierarchy (view full)

Properties

Properties

payload: {
    args?: any[];
    event: string;
}

The event name and arguments to pass to the event

Type declaration

  • Optionalargs?: any[]

    The arguments to pass to the event

  • event: string

    The name of the event to call

The type of message