group TS interfaces to avoid redundancy

This commit is contained in:
p2405951
2026-03-18 11:29:02 +01:00
parent b44470ce90
commit 15bb9126cd
5 changed files with 20 additions and 58 deletions
+6
View File
@@ -0,0 +1,6 @@
import type User from "./user.interface";
export interface AuthContextType {
user: User | null;
update: () => void;
}