(sessionPath: string)
| 14 | } |
| 15 | |
| 16 | export function getLiveThread(sessionPath: string) { |
| 17 | return liveThreads.get(sessionPath) ?? null |
| 18 | } |
| 19 | |
| 20 | export function shouldSuppressExternalThreadUpdate(sessionPath: string, now = Date.now()) { |
| 21 | const liveThread = liveThreads.get(sessionPath) |
no test coverage detected