import { Model } from 'sequelize'; import { IUserHasHomeWorkModelAttributes } from '../../interfaces/userHasHomeWorkInterface'; import { TUserHasHomeWorkAttributes } from '../../types/userHasHomeWorkType'; import { HOME_WORK_STATUS } from '../../constants/app'; declare class UserHasHomeWorkModel extends Model { id: string; userId: string; instituteId: string; homeWorkId: string; note?: string; studentStatus: HOME_WORK_STATUS; instituteStatus: HOME_WORK_STATUS; academicCalendarId: string; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly deletedAt?: Date; readonly updatedAt: Date; static associate(models: any): void; } export default UserHasHomeWorkModel;