From b1b0bb41dbb657d6bf137d26174e542da4f88936 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Thu, 6 Jul 2023 13:44:35 +0200 Subject: [PATCH] fix: Do not require esModuleInterop in consuming TypeScript projects --- source/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/types.ts b/source/types.ts index 781a3ab1..237431dc 100644 --- a/source/types.ts +++ b/source/types.ts @@ -1,4 +1,4 @@ -import Stream from "node:stream"; +import * as Stream from "node:stream"; import { Response } from "@buttercup/fetch"; export { Request, Response } from "@buttercup/fetch";