From c4d5b01acfe0cac31f94743a57e8e619178ba563 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 25 Aug 2020 09:43:54 +1000 Subject: feat: update to TypeScript 4.0 (#6514) --- std/node/querystring.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'std/node/querystring.ts') diff --git a/std/node/querystring.ts b/std/node/querystring.ts index 4e3c728c1..35dfbbc86 100644 --- a/std/node/querystring.ts +++ b/std/node/querystring.ts @@ -107,7 +107,8 @@ export function encodeStr( } export function stringify( - obj: object, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + obj: Record, sep = "&", eq = "=", { encodeURIComponent = escape }: StringifyOptions = {}, -- cgit v1.2.3