Skip to content

Commit 0c9c76a

Browse files
committed
Fix lint error
1 parent df98d9c commit 0c9c76a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7552,7 +7552,7 @@ namespace ts {
75527552
const containerObjectType = getJSContainerObjectType(symbol.valueDeclaration, symbol, container);
75537553
return containerObjectType || getWidenedLiteralType(checkExpressionCached(container));
75547554
}
7555-
let type = undefined;
7555+
let type;
75567556
let definedInConstructor = false;
75577557
let definedInMethod = false;
75587558
// We use control flow analysis to determine the type of the property if the property qualifies as a constructor

0 commit comments

Comments
 (0)