import { UserData } from '../../user/entity/user.entity'; import { ListMasterService } from 'src/module/listmaster/service/list-master.service'; import { ModuleRef } from '@nestjs/core'; import { AttributeMasterRepository } from '../repository/attribute-master.repository'; import { ReflectionHelper } from 'src/utils/service/reflection-helper.service'; import { EntityMasterRepository } from '../repository/entity-master.repository'; import { EntityManager } from 'typeorm'; export declare class ResolverService { private readonly listMasterService; private readonly moduleRef; private readonly attributeMasterRepo; private readonly reflectionHelper; private readonly entityMasterRepo; private readonly entityManger; private mediaDataService; constructor(listMasterService: ListMasterService, moduleRef: ModuleRef, attributeMasterRepo: AttributeMasterRepository, reflectionHelper: ReflectionHelper, entityMasterRepo: EntityMasterRepository, entityManger: EntityManager); private getMediaDataService; getResolvedData(loggedInUser: any, entityData: any, entityType: string): Promise; getResolvedValue(loggedInUser: UserData, attrKey: string, rawValue: any, entityType: string): Promise; getResolvedId(loggedInUser: UserData, attrKey: string, displayValue: any, entityType: string): Promise; }