import { Model } from 'sequelize'; import { IInventoryModelAttributes } from '../../interfaces/inventoryInterface'; import { TInventoryModelCreationAttributes } from '../../types/inventoryType'; import { COMMAN_STATUS, INVENTORY_TYPE } from '../../constants/app'; declare class InventoryModel extends Model { id: string; name: string; status: COMMAN_STATUS; instituteId: string; lost?: number; damage?: number; totalQuantity: number; categoryId: string; remainingQuantity: number; inventoryType: INVENTORY_TYPE; note?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: Date; static associate(models: any): void; } export default InventoryModel;