FreakingGenius - v0.1.0
    Preparing search index...

    Interface InterventionPlan

    The output of the intervention engine: what to do and at what hint level.

    interface InterventionPlan {
        action: InterventionAction;
        generatedAt: number;
        hintLevel: HintLevel;
        trigger: InterventionTrigger;
    }
    Index

    Properties

    The action the tutor should take.

    generatedAt: number

    Unix timestamp (ms) when the plan was generated.

    hintLevel: HintLevel

    How specific the hint should be.

    The trigger that caused this plan.