Skip to main content

ApplicationActionCompletedListener

type ApplicationActionCompletedListener = (params: {
eventName: string;
eventOptions?: Record<string, unknown>;
eventParams: ActionInfo;
obj: IApplication;
}) => void;

event handler that handles action completed event

Parameters

params

event parameters

eventName

string

event name

eventOptions?

Record<string, unknown>

additional options related to the event

eventParams

ActionInfo

action info

obj

IApplication

application object reference

Returns

void