import { IDefaultAttributes } from './commonInterface'; import { RMS_EXPENSE_TYPE } from '../constants/app'; export interface IRmsExpenseEntryAttributes extends IDefaultAttributes { id: string; instituteId: string; budgetId?: string | null; expenseType: RMS_EXPENSE_TYPE; amount: number; expenseDate: Date; referenceId?: string | null; referenceType?: string | null; description: string; approvedBy?: string | null; }