feat: tags on tasks
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
export interface ITask {
|
||||
id: number;
|
||||
id: string;
|
||||
name: string;
|
||||
checked: boolean;
|
||||
date: Date;
|
||||
description: string;
|
||||
tags: string[];
|
||||
new?: boolean;
|
||||
}
|
||||
|
||||
export interface ITaskForm extends Omit<ITask, "date"> {
|
||||
|
||||
Reference in New Issue
Block a user