import type { Customer } from './Customer'; /** * @type CustomerRegistration: Document representing the registration information for a customer. * * @property customer: The customer registration information. The mandatory properties for registration are login, last name and email. * * @property password: The login password * */ export type CustomerRegistration = { customer: Customer; password: string; } & { [key: string]: any; };