Type Alias: CallbackFunctionProps
CallbackFunctionProps:
object
Defined in: packages/core/src/types.ts:228
Props of the callback function.
Type declaration
functionArgs
functionArgs:
Record
<string
,unknown
>
functionContext?
optional
functionContext:CustomFunctionContext
<unknown
> |CustomFunctionContextCallback
<unknown
>
functionName
functionName:
string
previousOutput?
optional
previousOutput:CustomFunctionOutputProps
<unknown
,unknown
>[]
Param
The name of the function.
Param
The arguments of the function.
Param
The context of the function. See CustomFunctionContext for more details.
Param
The output of the previous function.