From 824293f5e4c8b3c9f26c601cfc45c4bc7ccaf63d Mon Sep 17 00:00:00 2001 From: Yui T Date: Thu, 16 Jul 2015 13:40:36 -0700 Subject: [PATCH] Fix CRLF --- src/compiler/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index e0f16a00c2b..9570617a106 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -1774,10 +1774,10 @@ namespace ts { StringLike = String | StringLiteral, NumberLike = Number | Enum, ObjectType = Class | Interface | Reference | Tuple | Anonymous, - UnionOrIntersection = Union | Intersection, + UnionOrIntersection = Union | Intersection, StructuredType = ObjectType | Union | Intersection, /* @internal */ - RequiresWidening = ContainsUndefinedOrNull | ContainsObjectLiteral + RequiresWidening = ContainsUndefinedOrNull | ContainsObjectLiteral } // Properties common to all types