blessed-components - v1.20.0
    Preparing search index...

    Interface ToastItem

    One Toast notification.

    interface ToastItem {
        createdAt?: number;
        description?: string;
        durationMs?: number;
        id: string;
        title: string;
        tone?: ToastTone;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdAt?: number

    Creation timestamp in milliseconds.

    description?: string

    Optional detail text rendered under the title.

    durationMs?: number

    Auto-dismiss duration in milliseconds. Infinity keeps the toast.

    id: string

    Stable unique identifier.

    title: string

    Primary toast text.

    tone?: ToastTone

    Semantic status used to select a marker.

    'info'