| 1 | export interface HistoryRecord { |
| 2 | id: string; |
| 3 | timestamp: number; |
| 4 | date: string; |
| 5 | input: string; |
| 6 | output: string; |
| 7 | title: string; |
| 8 | } |
| 9 | |
| 10 | const STORAGE_KEY = 'weekly_report_history'; |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected