UNPKG

cecon-interfaces

Version:
15 lines (14 loc) 375 B
import { ProductBlendItem } from './product-blend-item.interface'; import { IProductBase } from './product-interface'; export interface ProductBlend extends IProductBase { category: { id: string; name: string; }; cost: string; description: string; items: ProductBlendItem[]; price: string; sequence: number; updatedAt: Date; }