import { Document, Schema, Types } from 'mongoose'; export interface ProductSchema extends Document { name: string; description: string; group: string; price: number; quantity: number; specs: any; } export const productSchema = new Schema({ name: String, description: String, group: String, price: Number, quantity: Number, specs: Object }, { timestamps: true });