UNPKG

@langchain/core

Version:
11 lines 439 B
//#region src/singletons/async_local_storage/globals.d.ts /* eslint-disable @typescript-eslint/no-explicit-any */ interface AsyncLocalStorageInterface { getStore: () => any | undefined; run: <T>(store: any, callback: () => T) => T; enterWith: (store: any) => void; } declare const _CONTEXT_VARIABLES_KEY: unique symbol; //#endregion export { AsyncLocalStorageInterface, _CONTEXT_VARIABLES_KEY }; //# sourceMappingURL=globals.d.ts.map