featherbit UI
    Preparing search index...

    Interface ToastData

    Payload describing one notification.

    interface ToastData {
        details?: string;
        id?: string;
        message?: string;
        title: string;
        tone: "success" | "error" | "warning";
    }
    Index
    details?: string

    Full inspectable payload (e.g. the pretty-printed server error body).

    id?: string

    Id of the matching notification-log entry, when the toast was logged.

    message?: string

    Optional monospace detail line, typically the admin API error message.

    title: string

    Bold headline, e.g. the action that succeeded or failed.

    tone: "success" | "error" | "warning"

    Visual tone: success (green check), error (red cross), or warning (amber triangle, non-blocking heads-up).