petalbid-frontend
    Preparing search index...

    Interface LoginResponse

    Defines the shape of the data returned upon a successful login. The token is now handled via HttpOnly cookie, so we only receive the User.

    interface LoginResponse {
        user: User;
    }
    Index

    Properties

    Properties

    user: User

    The authenticated user's data.