Hiyve Components - v1.0.0
    Preparing search index...

    Interface CoachingHint

    Coaching hint from real-time AI analysis.

    interface CoachingHint {
        dismissed?: boolean;
        id: string;
        priority: "high" | "medium" | "low";
        text: string;
        timestamp: number;
        type: "warning" | "suggestion" | "insight";
    }
    Index

    Properties

    dismissed?: boolean

    Whether the hint has been dismissed

    id: string

    Unique hint identifier

    priority: "high" | "medium" | "low"

    Priority level

    text: string

    Hint text

    timestamp: number

    When the hint was generated

    type: "warning" | "suggestion" | "insight"

    Hint category