mirror of
https://github.com/harivansh-afk/Habit-Tracker.git
synced 2026-04-15 08:03:44 +00:00
7 lines
No EOL
129 B
TypeScript
7 lines
No EOL
129 B
TypeScript
export interface Habit {
|
|
id: number;
|
|
name: string;
|
|
created_at: string;
|
|
best_streak: number;
|
|
completedDates: string[];
|
|
} |