import { IDefaultAttributes } from './commonInterface'; import { RMS_GRN_ACTION_TYPE } from '../constants/app'; export interface IRmsGrnItemTransactionAttributes extends IDefaultAttributes { id: string; instituteId: string; grnItemId: string; resourceId: string; groupId: string; actionType: RMS_GRN_ACTION_TYPE; previousQuantity: number; newQuantity: number; changedQuantity: number; remarks?: string | null; actionDate: Date; actionBy: string; }