convert to TS

This commit is contained in:
p2405951
2026-03-13 15:13:16 +01:00
parent 00f6177842
commit 0f11ec641a
2 changed files with 29 additions and 0 deletions
+1
View File
@@ -21,6 +21,7 @@ export interface User {
export interface AuthContextType {
user: User | null;
loading: boolean;
update: () => void;
login: (email: string, password: string) => Promise<{ status: number }>;
}