Files
SAE-BUT2-frontend/src/interfaces/auth.interface.ts
T
2026-07-15 18:52:21 +02:00

7 lines
123 B
TypeScript
Executable File

import type User from "./user.interface";
export interface AuthContextType {
user: User | null;
update: () => void;
}