UNPKG

@tomei/product

Version:

NestJS package for product module

18 lines (17 loc) 487 B
import { Model } from 'sequelize-typescript'; import { StoreModel } from './store.entity'; import { ProductModel } from './product.entity'; export declare class StoreProductModel extends Model { StoreProductId: string; ProductId: string; StoreId: string; Status: string; PriceFormula: string; AddedById: string; AddedAt: Date; RemovedById: string; RemovedAt: Date; Product: ProductModel; Store: StoreModel; ProductVariant: ProductModel; }