| 18 | type SessionSubscriber = (session: SessionData) => void; |
| 19 | |
| 20 | class SessionStore { |
| 21 | private sessions = new Map<string, SessionData>(); |
| 22 | private subscribers = new Map<string, Set<SessionSubscriber>>(); |
| 23 | private cleanupInterval: NodeJS.Timeout | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected