import { Model } from 'sequelize'; import { IGreetingsModelAttributes } from '../../interfaces/greetingsInterface'; import { TGreetingsModelCreationAttributes } from '../../types/greetingsType'; import { COMMAN_STATUS, GREETING_TYPE } from '../../constants/app'; export default class GreetingsModel extends Model { id: string; instituteId: string; greetingType: GREETING_TYPE; isDefault: boolean; templateData: string; status: COMMAN_STATUS; title: string; image: string; academicCalendarId: string; oldId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; static addHooks(models: any): void; }