Fix interface import

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-03-27 14:05:00 +01:00
parent a969671152
commit 34781ff67a
2 changed files with 1 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import type User from "./user.interface";
export interface AuthContextType {
user: User | null;
update: () => void;
}