(sessionId: string)
| 527 | }, |
| 528 | |
| 529 | getSessionAnnotations(sessionId: string): Annotation[] { |
| 530 | const rows = stmts.getAnnotationsBySession.all(sessionId) as Record<string, unknown>[]; |
| 531 | return rows.map(rowToAnnotation); |
| 532 | }, |
| 533 | |
| 534 | deleteAnnotation(id: string): Annotation | undefined { |
| 535 | const existing = this.getAnnotation(id); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…