pivotick - v0.0.1
    Preparing search index...

    Interface Notifier

    Manages and displays notification messages in the graph UI.

    Use this component to show success, warning, error, or info messages to the user.

    graph.notifier.warning('This is a warning', 'Content of the message goes here.')
    
    interface Notifier {
        error(title: string, message?: string): void;
        info(title: string, message?: string): void;
        notify(level: NotificationLevel, title: string, message?: string): void;
        success(title: string, message?: string): void;
        warning(title: string, message?: string): void;
    }
    Index

    Methods

    • Parameters

      • title: string
      • Optionalmessage: string

      Returns void

    • Parameters

      • title: string
      • Optionalmessage: string

      Returns void

    • Dispatch a notification to the UIManager.

      Parameters

      • level: NotificationLevel

        The severity level of the notification.

      • title: string

        The title to display in the notification.

      • Optionalmessage: string

        Optional detailed message for the notification.

      Returns void

    • Parameters

      • title: string
      • Optionalmessage: string

      Returns void

    • Parameters

      • title: string
      • Optionalmessage: string

      Returns void