FreakingGenius - v0.1.0
    Preparing search index...

    Interface Session

    Live session state, mutated as the session progresses through its lifecycle.

    interface Session {
        checkpoints: Checkpoint[];
        config: SessionConfig;
        endedAt: number | null;
        id: SessionId;
        startedAt: number;
        status: SessionStatus;
    }
    Index

    Properties

    checkpoints: Checkpoint[]

    Ordered list of saved checkpoints, oldest first.

    Immutable configuration snapshot taken at session creation time.

    endedAt: number | null

    Unix timestamp (ms) when the session ended. null while the session is still running.

    Unique session identifier.

    startedAt: number

    Unix timestamp (ms) when the session was officially started.

    Current lifecycle status.