export interface StockModel { catalog?: any[]; createdAt?: any; updatedAt?: any; image?: any; id?: string; _id?: string; product: string; saleable: boolean | true; canExpire?: boolean | true; description?: string; unit: string; category: string; type?: 'simple' | 'grouped'; downloadable: boolean | false; downloads: { name: string; type: string; url: string; }[]; stockable: boolean | true; purchasable: boolean | true; quantity: number; wholesaleQuantity: number; reorder: number; purchase: number; retailPrice: number; wholesalePrice: any; supplier: string; expire: string; }