From dadb7e62ff81a1e2c1f177d73e550e46d1b7caa1 Mon Sep 17 00:00:00 2001 From: bracesproul Date: Thu, 5 Dec 2024 13:19:42 -0800 Subject: [PATCH] fix tests --- langchain-core/src/utils/stream.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/langchain-core/src/utils/stream.ts b/langchain-core/src/utils/stream.ts index b2c7ba21bb27..cd3e592806be 100644 --- a/langchain-core/src/utils/stream.ts +++ b/langchain-core/src/utils/stream.ts @@ -1,11 +1,11 @@ import { pickRunnableConfigKeys } from "../runnables/config.js"; import { AsyncLocalStorageProviderSingleton } from "../singletons/index.js"; -import { IterableReadableStreamInterface } from "../types/stream.js"; +import type { IterableReadableStreamInterface } from "../types/stream.js"; import { raceWithSignal } from "./signal.js"; // Re-exported for backwards compatibility // Do NOT import this type from this file inside the project. Instead, always import from `types/stream.js` -export { IterableReadableStreamInterface }; +export type { IterableReadableStreamInterface }; /* * Support async iterator syntax for ReadableStreams in all environments.