Interface LogClickEventActionCreatorPayload

interface LogClickEventActionCreatorPayload {
    evt: string;
    meta?: Record<string, unknown>;
    result: Result;
}

Properties

Properties

evt: string

The identifier of the click action (e.g., documentOpen).

meta?: Record<string, unknown>

The event metadata.

result: Result

The result associated with the click event.