@langchain/core
Version:
Core LangChain.js abstractions and schemas
11 lines • 439 B
TypeScript
//#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