(notes: Record<number, string>)
| 47 | } |
| 48 | |
| 49 | export function saveNotes(notes: Record<number, string>): void { |
| 50 | saveJson(NOTES_KEY, notes); |
| 51 | } |
| 52 | |
| 53 | export function loadSolvedDates(): Record<number, string> { |
| 54 | return loadJson<Record<number, string>>(SOLVED_DATES_KEY, {}); |
no test coverage detected