Files
anti-hvost/src/pages/profile_tasks.dto.ts
2025-04-25 15:20:20 +03:00

14 lines
225 B
TypeScript

export interface ITask {
id: string;
name: string;
checked: boolean;
date: Date;
description: string;
tags: string[];
new?: boolean;
}
export interface ITaskForm extends Omit<ITask, "date"> {
date: string;
}