FreakingGenius - v0.1.0
    Preparing search index...

    Interface StateTransition

    Describes a state-to-state transition.

    interface StateTransition {
        from: TutorStateType;
        reason?: string;
        timestamp: number;
        to: TutorStateType;
    }
    Index

    Properties

    The state being left.

    reason?: string

    Optional reason label for logging.

    timestamp: number

    Unix timestamp (ms) when the transition fired.

    The state being entered.