Skip to content

Commit e342c95

Browse files
committed
fix code styling
1 parent 880ccf0 commit e342c95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5372,7 +5372,8 @@ module ts {
53725372
let constructSignatures: Signature[];
53735373
if (rightType.flags & TypeFlags.Interface) {
53745374
constructSignatures = (<InterfaceTypeWithDeclaredMembers>rightType).declaredConstructSignatures;
5375-
} else if (rightType.flags & TypeFlags.Anonymous) {
5375+
}
5376+
else if (rightType.flags & TypeFlags.Anonymous) {
53765377
constructSignatures = (<ResolvedType>rightType).constructSignatures;
53775378
}
53785379

0 commit comments

Comments
 (0)