| 1 | export interface Reminder { |
| 2 | nextReview: string; // ISO date string (date only, e.g. "2026-03-09") |
| 3 | interval: number; // current interval in days |
| 4 | } |
| 5 | |
| 6 | const SCHEDULE = [1, 3, 7, 14, 30]; |
| 7 |
nothing calls this directly
no outgoing calls
no test coverage detected