UpdateActionTriggerParams
Last updated
Was this helpful?
id:
string
optionallabel:string
The label of the action trigger.
optionaldisabled:boolean
Whether the action trigger is disabled or not.
optionaltype:undefined
optionalonTrigger: (args: {id:string; }) =>void
The function to call when the action trigger is triggered.
args
{ id: string; }
The arguments passed to the function.
args.id
string
The id of the action trigger.
void
optionalonCreate: (args: {id:string; }) =>void
A function to call when the element is created.
args
{ id: string; }
The arguments passed to the function.
args.id
string
The id of the element.
void
optionalonDestroy: (args: {id:string; }) =>void
A function to call when the element is destroyed.
args
{ id: string; }
The arguments passed to the function.
args.id
string
The id of the element.
void
Last updated
Was this helpful?
Was this helpful?