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