ChemPal Documentation - v1.6.0
    Preparing search index...

    Props for UpdatePrompt.

    • notice - The pending update, or undefined to render nothing.
    • onDismiss - Invoked when the user closes the prompt.
    • onApply - Invoked when the user takes the call to action.
    interface UpdatePromptProps {
        notice: undefined | UpdateNotice;
        onDismiss: () => void;
        onApply: () => void;
    }
    Index

    Properties

    notice: undefined | UpdateNotice
    onDismiss: () => void
    onApply: () => void