MCPcopy
hub / github.com/seanprashad/leetcode-patterns / Reminder

Interface Reminder

src/lib/reminders.ts:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected