export interface ITask { id: number; name: string; checked: boolean; date: Date; description: string; tags: string[]; }