Arc.React
    Preparing search index...

    Interface DialogProps<TResponse>

    Represents the properties for a dialog component, including a method to close the dialog.

    interface DialogProps<TResponse = object> {
        closeDialog: CloseDialog<TResponse>;
    }

    Type Parameters

    • TResponse = object
    Index

    Properties

    Properties

    closeDialog: CloseDialog<TResponse>

    A function to close the dialog, which takes a result and an optional response.