Type alias AuthResponse

AuthResponse: {
    data: {
        session: AuthSession | null;
        user: AuthUser | null;
    };
    error: null;
} | {
    data: {
        session: null;
        user: null;
    };
    error: AuthError;
}

Generated using TypeDoc