(id: string)
| 351 | }, |
| 352 | |
| 353 | getSession(id: string): Session | undefined { |
| 354 | const row = stmts.getSession.get(id) as Record<string, unknown> | undefined; |
| 355 | return row ? rowToSession(row) : undefined; |
| 356 | }, |
| 357 | |
| 358 | getSessionWithAnnotations(id: string): SessionWithAnnotations | undefined { |
| 359 | const sessionRow = stmts.getSession.get(id) as Record<string, unknown> | undefined; |
nothing calls this directly
no test coverage detected
searching dependent graphs…