From 5edcd8a6f793dee5a29f6389182e0ce3e417665b Mon Sep 17 00:00:00 2001 From: Joey Germain <37086292+jrgermain@users.noreply.github.com> Date: Sat, 28 Sep 2024 12:32:03 -0400 Subject: [PATCH] fix(types): make multiValueHeaders in req string array (#273) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index c3af7b1..c23ae10 100644 --- a/index.d.ts +++ b/index.d.ts @@ -155,7 +155,7 @@ export declare class Request { [key: string]: string | undefined; }; multiValueHeaders: { - [key: string]: string | undefined; + [key: string]: string[] | undefined; }; rawHeaders?: { [key: string]: string | undefined;