Documentation - v1.2.0-alpha.3
    Preparing search index...

    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.

    interface DialogEvent {
        bubble: boolean;
        name: string;
        value?: any;
    }
    Index

    Properties

    Properties

    bubble: boolean

    Flag indicating whether the event will be bubbled to the parent DialogContext.

    name: string

    Name of the event being raised.

    value?: any

    Optional. Value associated with the event.