Skip to main content

Introducing Workflow Engine, try for FREE workflowengine.io.

Type Alias: ActionHandler()<T>

ActionHandler<T>: (e, params) => void | Promise<void>

Action function type.

Type Parameters

T

the type of action parameters.

Parameters

e: ActionEventArgs

the action arguments.

params: { [k in keyof T]: any }

the action parameters arguments.

Returns

void | Promise<void>