Interface Notification

interface Notification {
    actions: string[];
    collapsed: boolean;
    expandable: boolean;
    message: string;
    messageId: string;
    progress?: number;
    source?: string;
    type: messages.Type;
}

Properties

actions: string[]
collapsed: boolean
expandable: boolean
message: string
messageId: string
progress?: number
source?: string