mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 16:34:54 +00:00
Implementation of fetching, adding and updating todos to db
This commit is contained in:
11
hooks/firebase/types/todoData.ts
Normal file
11
hooks/firebase/types/todoData.ts
Normal file
@ -0,0 +1,11 @@
|
||||
export interface IToDo {
|
||||
id: string;
|
||||
title: string;
|
||||
done: boolean;
|
||||
date: Date | null;
|
||||
points?: number;
|
||||
rotate: boolean;
|
||||
repeatType: string;
|
||||
creatorId?: string,
|
||||
familyId?: string
|
||||
}
|
||||
Reference in New Issue
Block a user