Type Alias: ActionHandler()<T>
ActionHandler<T> = (e, params) => Promise<void> | void
Action function type.
Type Parameters
T
the type of action parameters.
Parameters
ActionEventArgs
the action arguments.
params
{ [k in keyof T]: any }
the action parameters arguments.
Returns
Promise<void> | void