export default interface IWishlist { readonly id?: string; readonly customer_id: string; readonly user_email: string; readonly items: string[]; readonly last_update?: Date; }