FreakingGenius - v0.1.0
    Preparing search index...

    Interface TutorState

    A snapshot of the tutor's behavioral state at a point in time.

    interface TutorState {
        enteredAt: number;
        metadata: Record<string, unknown>;
        type: TutorStateType;
    }
    Index

    Properties

    enteredAt: number

    Unix timestamp (ms) when this state was entered.

    metadata: Record<string, unknown>

    Arbitrary metadata attached at transition time.

    The current FSM state.