From 1636f06f6cdd6dbbff20343290721b17769860a1 Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Sat, 11 Mar 2023 21:41:53 +0000 Subject: [PATCH] Adde user Type --- daily-thought-frontend/src/types/user.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 daily-thought-frontend/src/types/user.ts diff --git a/daily-thought-frontend/src/types/user.ts b/daily-thought-frontend/src/types/user.ts new file mode 100644 index 00000000..243df629 --- /dev/null +++ b/daily-thought-frontend/src/types/user.ts @@ -0,0 +1,7 @@ +export type User = { + FirstName: string, + LastName: string, + Username: string, + Avatar: string | null; + Colors: string[]; +} \ No newline at end of file -- GitLab