| 30 | |
| 31 | /** Statistics computed from session content */ |
| 32 | export interface SessionStats { |
| 33 | totalItems: number; |
| 34 | completedItems: number; |
| 35 | inProgressItems: number; |
| 36 | lineCount: number; |
| 37 | hasNotes: boolean; |
| 38 | hasContext: boolean; |
| 39 | } |
| 40 | |
| 41 | /** A session object returned by getAllSessions and getSessionById */ |
| 42 | export interface Session extends SessionFilenameMeta { |
nothing calls this directly
no outgoing calls
no test coverage detected