| 18 | |
| 19 | /** Metadata parsed from session markdown content */ |
| 20 | export interface SessionMetadata { |
| 21 | title: string | null; |
| 22 | date: string | null; |
| 23 | started: string | null; |
| 24 | lastUpdated: string | null; |
| 25 | completed: string[]; |
| 26 | inProgress: string[]; |
| 27 | notes: string; |
| 28 | context: string; |
| 29 | } |
| 30 | |
| 31 | /** Statistics computed from session content */ |
| 32 | export interface SessionStats { |
nothing calls this directly
no outgoing calls
no test coverage detected