Type Alias: CallbackFunction()
CallbackFunction: (
props
) =>CustomFunctionOutputProps
<unknown
,unknown
> |Promise
<CustomFunctionOutputProps
<unknown
,unknown
>>
Defined in: packages/core/src/types.ts:243
Callback function for custom functions. You can define your own callback function to execute custom functions.
Parameters
props
The props of the callback function. See CallbackFunctionProps for more details.
Returns
CustomFunctionOutputProps
<unknown
, unknown
> | Promise
<CustomFunctionOutputProps
<unknown
, unknown
>>
The output of the custom function. See CustomFunctionOutputProps for more details.