FreakingGenius - v0.1.0
    Preparing search index...

    Interface SessionEvent

    A typed event emitted by SessionManager to interested subscribers.

    interface SessionEvent {
        payload?: Record<string, unknown>;
        sessionId: SessionId;
        timestamp: number;
        type: SessionEventType;
    }
    Index

    Properties

    payload?: Record<string, unknown>

    Optional event-specific payload (varies by SessionEventType).

    sessionId: SessionId

    ID of the session that emitted this event.

    timestamp: number

    Unix timestamp (ms) when the event occurred.

    The kind of event that occurred.