import { Model } from 'sequelize'; import { IHomeWorkModelAttributes } from '../../interfaces/homeworkInterface'; import { THomeWorkModelCreationAttributes } from '../../types/homeWorkType'; import { COMMAN_STATUS } from '../../constants/app'; declare class HomeWorkModel extends Model { id: string; title: string; description: string; status: COMMAN_STATUS; instituteId: string; batchId: string; subjectId: string; fileStorageId: string[]; submissionDate: string; academicCalendarId: string; type: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default HomeWorkModel;