import { Model } from 'sequelize'; import { CALL_TYPE } from '../../constants/app'; import { ICallRegisterModelAttributes } from '../../interfaces/callRegisterInterface'; import { TCallRegisterModelCreationAttributes } from '../../types/callRegisterType'; declare class CallRegisterModel extends Model { id: string; name: string; date: Date; mobile: string; callType: CALL_TYPE; description: string; instituteId?: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; } export default CallRegisterModel;