UNPKG

@tomei/product

Version:

NestJS package for product module

11 lines (10 loc) 361 B
import { Model } from 'sequelize-typescript'; import { ProductModel } from './product.entity'; import { SettingsCategoryModel } from './settings-category.entity'; export declare class ProductCategoriesModel extends Model { ProductCategoryId: string; ProductId: string; Code: string; Product: ProductModel; Category: SettingsCategoryModel; }