Start working on the profile refactoring.

This commit is contained in:
charlesgauthereau
2025-12-21 16:55:12 +01:00
parent 428782e8a4
commit 116229a29e
77 changed files with 5076 additions and 509 deletions
+17
View File
@@ -0,0 +1,17 @@
export type SignUpUser = {
name: string
email: string
password: string
callbackURL?: string
theme: string
isDefaultPassword: boolean
}
export type BetterAuthError = {
code?: string;
message?: string;
status: number;
statusText: string;
};