GeoLeaf Core API - v3.0.0
    Preparing search index...

    Shape of the current notification system status snapshot returned by Notifications.getStatus().

    interface NotifyStatus {
        enabled: boolean;
        initialized: boolean;
        activeToasts: number;
        temporaryToasts: number;
        persistentToasts: number;
        queued: number;
        maxVisible: number;
        maxPersistent: number;
        position: string;
    }
    Index

    Properties

    enabled: boolean

    Whether the notification system is currently enabled.

    initialized: boolean

    Whether init() has been called successfully.

    activeToasts: number

    Number of toasts currently visible (temporary + persistent).

    temporaryToasts: number

    Number of temporary (auto-dismiss) toasts visible.

    persistentToasts: number

    Number of persistent toasts visible.

    queued: number

    Number of notifications waiting in the priority queue.

    maxVisible: number

    Configured maximum number of simultaneous visible toasts.

    maxPersistent: number

    Configured maximum number of simultaneous persistent toasts.

    position: string

    Current display position (e.g. "bottom-center", "top-right").