/// import { AsyncLocalStorage } from 'async_hooks'; import { EntityTarget, ObjectLiteral, Repository } from 'typeorm'; import { AlsStore } from './interfaces/als-store.interface'; export declare class BaseRepository extends Repository { readonly target: EntityTarget; private readonly alsService; constructor(target: EntityTarget, alsService: AsyncLocalStorage); }