Vertex Viewer SDK
    Preparing search index...

    Interface VertexSceneTreeNotificationBanner

    A notification banner that displays a message and an action button.

    interface VertexSceneTreeNotificationBanner {
        actionLabel?: string;
        message?: string;
        onAction?: (
            event: VertexSceneTreeNotificationBannerCustomEvent<void>,
        ) => void;
    }
    Index
    actionLabel?: string

    The label of the action button.

    message?: string

    The message to display in the banner.

    onAction?: (event: VertexSceneTreeNotificationBannerCustomEvent<void>) => void

    An event that is emitted when the action button is clicked.