Skip to content

Commit bb15df3

Browse files
committed
Fix lint error
1 parent 8bd6fd8 commit bb15df3

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
@@ -14600,7 +14600,7 @@ namespace ts {
1460014600
* with no call or construct signatures.
1460114601
*/
1460214602
function isObjectTypeWithInferableIndex(type: Type) {
14603-
return type.symbol && (type.symbol.flags & (SymbolFlags.ObjectLiteral | SymbolFlags.TypeLiteral | SymbolFlags.Enum| SymbolFlags.ValueModule)) !== 0 &&
14603+
return type.symbol && (type.symbol.flags & (SymbolFlags.ObjectLiteral | SymbolFlags.TypeLiteral | SymbolFlags.Enum | SymbolFlags.ValueModule)) !== 0 &&
1460414604
!typeHasCallOrConstructSignatures(type);
1460514605
}
1460614606

0 commit comments

Comments
 (0)