From b46f0d01792ed1aff7fb46f2fe0b989768f3a1a9 Mon Sep 17 00:00:00 2001 From: Devin Ivy Date: Sat, 7 May 2022 18:56:38 -0400 Subject: [PATCH] Add check for TS error 2820 --- lib/modules/types.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/modules/types.js b/lib/modules/types.js index fc93efd8..a427e635 100755 --- a/lib/modules/types.js +++ b/lib/modules/types.js @@ -40,7 +40,8 @@ const internals = { 2559, // Type T has no properties in common with type U 2769, // No overload matches this call 2673, // Constructor of class is private - 2674 // Constructor of class is protected + 2674, // Constructor of class is protected + 2820 // Type T is not assignable to type U. Did you mean V? ] };