import { AsyncLocalStorage } from 'async_hooks'; import { QueryBuilder } from 'typeorm'; export interface QueryContext { builder: QueryBuilder; sql?: string; tables: string[]; queryType?: string; timestamp?: Date; } export declare const queryContextStore: AsyncLocalStorage; //# sourceMappingURL=context-store.d.ts.map