UNPKG

@tomei/product

Version:

NestJS package for product module

13 lines (12 loc) 421 B
import { Model } from 'sequelize-typescript'; import { ProductModel } from './product.entity'; import { SettingsCollectionModel } from './settings-collection.entity'; export declare class ProductCollectionsModel extends Model { ProductCollectionId: string; ProductId: string; Code: string; Product: ProductModel; ProductCollection: SettingsCollectionModel; CreatedAt: Date; UpdatedAt: Date; }