From d71752ad6f97e71c7acce297ba5f8c8508ee2e2d Mon Sep 17 00:00:00 2001 From: Mattias Date: Sat, 16 Mar 2024 13:11:39 +0100 Subject: [PATCH] Created new type for timereport --- frontend/src/Types/TimeReport.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/src/Types/TimeReport.ts diff --git a/frontend/src/Types/TimeReport.ts b/frontend/src/Types/TimeReport.ts new file mode 100644 index 0000000..9685964 --- /dev/null +++ b/frontend/src/Types/TimeReport.ts @@ -0,0 +1,9 @@ +export interface TimeReport { + week: string; + development: string; + meeting: string; + administration: string; + ownwork: string; + studies: string; + testing: string; +}