termine el contador de dias

This commit is contained in:
2025-11-01 16:16:58 -03:00
parent 06629cc1c0
commit 2d60fcc9cd
5 changed files with 179 additions and 33 deletions

20
src/types.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
export interface Issue {
id: number;
project: { id: number; name: string };
tracker: { id: number; name: string };
status: { id: number; name: string; is_closed: boolean };
priority: { id: number; name: string };
author: { id: number; name: string };
subject: string;
description: string;
start_date: string;
due_date: string;
cantDias: number;
done_ratio: number;
is_private: boolean;
estimated_hours: number | null;
total_estimated_hours: number | null;
created_on: string;
updated_on: string;
closed_on: string;
}