interface CustomerSignInResult {
    cart?: Cart;
    customer: Customer;
}

Properties

Properties

cart?: Cart

Cart associated with the Customer. If empty, the Customer does not have a Cart assigned.

customer: Customer

Customer signed up or signed in after authentication.

Generated using TypeDoc