Interface SearchDialogModel

interface SearchDialogModel {
    canCreate?: boolean;
    entityLabel: string;
    entityName: string;
    onClose?: ((result?: SearchDialogResponse) => Promise<boolean>);
    result?: SearchDialogResponse;
}

Hierarchy (view full)

Properties

canCreate?: boolean
entityLabel: string
entityName: string
onClose?: ((result?: SearchDialogResponse) => Promise<boolean>)

Values returned on the close of the dialog box. May be undefined when dialog box is cancelled.