featherbit UI
    Preparing search index...

    Interface ToastData

    Payload describing one notification.

    interface ToastData {
        message?: string;
        title: string;
        tone: "success" | "error";
    }
    Index
    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"

    Visual tone: success (green check) or error (red cross).