()
| 43 | } |
| 44 | |
| 45 | export function loadNotes(): Record<number, string> { |
| 46 | return loadJson<Record<number, string>>(NOTES_KEY, {}); |
| 47 | } |
| 48 | |
| 49 | export function saveNotes(notes: Record<number, string>): void { |
| 50 | saveJson(NOTES_KEY, notes); |
no test coverage detected