GitHub

MagentoRegisterResponse

import { MagentoRegisterResponse } from '@daffodil/auth/driver/magento'
interface MagentoRegisterResponse {
  createCustomerV2: {
    customer: {
        email: string;
    };
}
}

Properties

Name Type Description
createCustomerV2 { customer: { email: string; }; }