import { Model } from 'sequelize'; import { POSTAL_DISPATCH_STATUS } from '../../constants/app'; import { IPostalDispatchModelAttributes } from '../../interfaces'; import { TPostalDispatchModelCreationAttributes } from '../../types/postalDispatchType'; declare class PostalDispatchModel extends Model { id: string; name: string; date: Date; mobile: string; status: POSTAL_DISPATCH_STATUS; description: string; instituteId: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; } export default PostalDispatchModel;