Documentation
    Preparing search index...

    Interface Notification

    interface Notification {
        createdAtTimestamp: number;
        id: string;
        markAsRead: () => void;
        messageMarkdown: string;
        redirectUrl?: string;
        type: "error" | "success" | "info";
        wasRead: boolean;
    }
    Index
    createdAtTimestamp: number
    id: string
    markAsRead: () => void
    messageMarkdown: string
    redirectUrl?: string
    type: "error" | "success" | "info"
    wasRead: boolean