Interface SearchOrCreateAndLinkDialogBase<T>

interface SearchOrCreateAndLinkDialogBase<T> {
    entityLabel: string;
    entityName: string;
    onClose?: ((result?: T) => Promise<boolean>);
    result?: T;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

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

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