UIDividerElementUpdate
The parameters for updating a divider element.
See UIDividerElement for more details.
Remarks
id and type are required to identify the element to update.
Properties
type
type:
"Divider"
id
id:
string
The ID of the element.
onCreate()?
optionalonCreate: (args: {id:string; }) =>void
A function to call when the element is created.
Parameters
Parameter
Type
Description
args
{ id: string; }
The arguments passed to the function.
args.id
string
The id of the element.
Returns
void
onDestroy()?
optionalonDestroy: (args: {id:string; }) =>void
A function to call when the element is destroyed.
Parameters
Parameter
Type
Description
args
{ id: string; }
The arguments passed to the function.
args.id
string
The id of the element.
Returns
void
Last updated
Was this helpful?