Created new type for timereport

This commit is contained in:
Mattias 2024-03-16 13:11:39 +01:00
parent 87c044b5bf
commit d71752ad6f

View file

@ -0,0 +1,9 @@
export interface TimeReport {
week: string;
development: string;
meeting: string;
administration: string;
ownwork: string;
studies: string;
testing: string;
}