import { ModuleRef } from '@nestjs/core'; import { DataSource, Repository } from 'typeorm'; import { ConfigService } from '@nestjs/config'; export declare class ReflectionHelper { private moduleRef; private dataSource; private readonly configService; schema: string; constructor(moduleRef: ModuleRef, dataSource: DataSource, configService: ConfigService); getRepoService(entityName: string): Repository; getBean(beanName: string): Promise; getEntityData(id: number, tableName: string): Promise; }