| 4 | import { format, subDays, eachDayOfInterval, startOfWeek, endOfWeek } from "date-fns"; |
| 5 | |
| 6 | interface HeatmapDay { |
| 7 | day: string; |
| 8 | count: number; |
| 9 | } |
| 10 | |
| 11 | interface HeatmapStats { |
| 12 | total: number; |
nothing calls this directly
no outgoing calls
no test coverage detected