Notification passed to showNotification

interface NotificationAction {
    callback: (() => void);
    key: symbol;
    label: string;
    processing: boolean;
}

Properties

callback: (() => void)

Type declaration

    • (): void
    • Returns void

key: symbol
label: string
processing: boolean