UNPKG

@tomei/product

Version:

NestJS package for product module

10 lines (9 loc) 331 B
import { Model } from 'sequelize-typescript'; import { StockGroup } from './stock-group.entity'; import { StockInventory } from './stock-inventory.entity'; export declare class StockInventoryGroup extends Model { Code: string; InventoryId: string; StockGroup: StockGroup; StockInventory: StockInventory; }