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
action info
obj
application object reference
Returns
void