interface AuthContextType {
    auth: null | Auth;
    login: () => void;
    logout: () => void;
}

Properties

Properties

auth: null | Auth
login: () => void
logout: () => void