Skip to content

Commit caf000b

Browse files
committed
⬆️ add property type to Task type
1 parent 89cbbd0 commit caf000b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/models/task.model.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export type Task = {
33
content: string;
44
createdAt: Date;
55
dueAt: Date;
6-
link?: string;
76
title: string;
7+
type: string;
8+
link?: string;
89
};

0 commit comments

Comments
 (0)