@vowel.to/client / index / ActionHandler
Type Alias: ActionHandler()<T>
ts
type ActionHandler<T> = (params) => any | Promise<any>;Defined in: lib/vowel/types/types.ts:252
Custom action handler function
Type Parameters
| Type Parameter | Default type |
|---|---|
T | any |
Parameters
| Parameter | Type |
|---|---|
params | T |
Returns
any | Promise<any>