import { Model } from 'sequelize'; import { APP_TYPE, COMMAN_STATUS } from '../../constants/app'; import { IModuleAttributes } from '../../interfaces/moduleInterface'; import { TModuleCreationAttributes } from '../../types/moduleType'; declare class ModuleModel extends Model { id: string; name: string; status: COMMAN_STATUS; isDefault: boolean; roleId: string; code: string; appType: APP_TYPE; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default ModuleModel;