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

    Props for UpdatePrompt.

    • notice - The pending update, or undefined to render nothing.
    • onDismiss - Invoked when the user dismisses the prompt for good (✕).
    • onSnooze - Invoked when the user defers the prompt (modal "Later").
    • onApply - Invoked when the user takes the call to action.
    interface UpdatePromptProps {
        notice: undefined | UpdateNotice;
        onDismiss: () => void;
        onSnooze: () => void;
        onApply: () => void;
    }
    Index

    Properties

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