(sessionPath: string, thread: ThreadData)
| 10 | } |
| 11 | |
| 12 | export function rememberLiveThread(sessionPath: string, thread: ThreadData) { |
| 13 | liveThreads.set(sessionPath, thread) |
| 14 | } |
| 15 | |
| 16 | export function getLiveThread(sessionPath: string) { |
| 17 | return liveThreads.get(sessionPath) ?? null |
no outgoing calls
no test coverage detected