From ccb755603eb55728e9ca679779705f6d3eb8b37c Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Wed, 2 Jul 2025 11:45:37 +0200 Subject: [PATCH] feat: add EZPPUser type definition for user management --- src/lib/types.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/lib/types.ts diff --git a/src/lib/types.ts b/src/lib/types.ts new file mode 100644 index 0000000..b2ff5a6 --- /dev/null +++ b/src/lib/types.ts @@ -0,0 +1,6 @@ +export type EZPPUser = { + id: number; + donor: boolean; + name: string; + email: string; +};