feat: add EZPPUser type definition for user management

This commit is contained in:
HorizonCode 2025-07-02 11:45:37 +02:00
parent b4814b57cf
commit ccb755603e

6
src/lib/types.ts Normal file
View File

@ -0,0 +1,6 @@
export type EZPPUser = {
id: number;
donor: boolean;
name: string;
email: string;
};