| 6 | |
| 7 | /** Parsed metadata from a session filename */ |
| 8 | export interface SessionFilenameMeta { |
| 9 | /** Original filename */ |
| 10 | filename: string; |
| 11 | /** Short ID extracted from filename, or "no-id" for old format */ |
| 12 | shortId: string; |
| 13 | /** Date string in YYYY-MM-DD format */ |
| 14 | date: string; |
| 15 | /** Parsed Date object from the date string */ |
| 16 | datetime: Date; |
| 17 | } |
| 18 | |
| 19 | /** Metadata parsed from session markdown content */ |
| 20 | export interface SessionMetadata { |
nothing calls this directly
no outgoing calls
no test coverage detected