From f14376aae728aa05e3835b67b04aa2b30faae960 Mon Sep 17 00:00:00 2001 From: Benjamin Reid Date: Wed, 3 Mar 2021 14:07:22 +0000 Subject: [PATCH 1/2] any return time for Debug (implicit any errors) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 43c536187..4ca23c78d 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -299,7 +299,7 @@ export interface RenderOptions { } type Debug = { - (message?: string); + (message?: string): any; shallow: (message?: string) => void; }; From c5b705e180318f4598c23fbb0611de1fe9910719 Mon Sep 17 00:00:00 2001 From: Benjamin Reid Date: Wed, 3 Mar 2021 15:11:23 +0000 Subject: [PATCH 2/2] Update typings/index.d.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michał Pierzchała --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 4ca23c78d..c0188727d 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -299,7 +299,7 @@ export interface RenderOptions { } type Debug = { - (message?: string): any; + (message?: string): void; shallow: (message?: string) => void; };