Orca Note Plugin API Documentation
    Preparing search index...

    Interface Notification

    Represents a notification displayed to the user. Notifications provide feedback about operations or important information.

    interface Notification {
        action?: () => void | Promise<void>;
        id: number;
        message: string;
        title?: string;
        type: "info" | "success" | "warn" | "error";
    }
    Index

    Properties

    action?: () => void | Promise<void>

    Optional action callback that can be triggered from the notification

    id: number

    Unique identifier for the notification

    message: string

    Main message content of the notification

    title?: string

    Optional title text for the notification

    type: "info" | "success" | "warn" | "error"

    Type of notification that determines its visual appearance and severity