DialogEvent interface
Represents an event that occurs within a dialog, providing details such as its name, whether it should bubble to parent contexts, and any associated value.
Properties
bubble | Flag indicating whether the event will be bubbled to the parent |
name | Name of the event being raised. |
value | Optional. Value associated with the event. |
Property Details
bubble
Flag indicating whether the event will be bubbled to the parent DialogContext
.
bubble: boolean
Property Value
boolean
name
Name of the event being raised.
name: string
Property Value
string
value
Optional. Value associated with the event.
value?: any
Property Value
any