SheetXL - v0.3.20
    Preparing search index...

    Interface NotificationOptions

    Configuration for non-blocking notifications.

    interface NotificationOptions {
        enqueueProps?: Record<string, any>;
        onceKey?: string;
        persist?: boolean;
        preventDuplicate?: boolean;
        type?: NotificationType;
    }
    Index

    Properties

    enqueueProps?: Record<string, any>

    Passed directly to the Snackbar component.

    onceKey?: string

    If provided then then notification provider should not notify if the same id is used again.

    persist?: boolean

    Setting this to true will leave the notification on the screen unless it is dismissed (programmatically or through user interaction). If false will be removed after a period of time.

    false
    
    preventDuplicate?: boolean

    Ignores displaying multiple snackBars with the same message.

    false
    

    A hint for decorations of the message.