Properties of the SelectMessageDialog React component.

interface SelectMessageDialogProps {
    modal?: boolean;
    nodeIdentifier?: string;
    onClose: () => void;
    onSelect: (message: FrameDefinition) => void;
    open: boolean;
    parentDialogTitle?: string;
}

Properties

modal?: boolean
nodeIdentifier?: string
onClose: () => void
onSelect: (message: FrameDefinition) => void
open: boolean
parentDialogTitle?: string