termine el contador de dias
This commit is contained in:
20
src/types.d.ts
vendored
Normal file
20
src/types.d.ts
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user