Interface UserCredentials

interface UserCredentials {
    email: string;
    hashed_password: string;
    id: string;
    phone: null | string;
    type: "superuser" | "standard";
    user_id: string;
}

Properties

email: string
hashed_password: string
id: string
phone: null | string
type: "superuser" | "standard"
user_id: string