UNPKG

medusa-plugin-reviews-and-ratings

Version:

Medusa plugin to add product reviews and ratings functionality in the project.

11 lines (10 loc) 316 B
import { Customer, Image, Product, SoftDeletableEntity } from "@medusajs/medusa"; export declare class ProductReview extends SoftDeletableEntity { product: Product; customer: Customer; images: Image[]; title: string; description: string; rating: number; private beforeInsert; }