UNPKG

cecon-interfaces

Version:
15 lines (14 loc) 326 B
import { IProductBase } from './product-interface'; export interface ProductInput extends IProductBase { cost: number; linkedProducts: number; category: { categoryId: string; categoryName: string; }; stock: { active: number; min: number; available: number; }; }