feat: tasks editing form

This commit is contained in:
2025-04-23 15:17:10 +03:00
parent eb12afe763
commit c1246939cd
3 changed files with 99 additions and 20 deletions

View File

@@ -6,3 +6,7 @@ export interface ITask {
description: string;
tags: string[];
}
export interface ITaskForm extends Omit<ITask, "date"> {
date: string;
}