Skip to content

Commit 6941aeb

Browse files
committed
Revert "Fix lint"
This reverts commit b39c319.
1 parent b153092 commit 6941aeb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/compiler/types.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ namespace ts {
711711
| SyntaxKind.SetAccessor
712712
| SyntaxKind.Constructor
713713
| SyntaxKind.ArrowFunction
714-
| SyntaxKind.FunctionExpression;
714+
| SyntaxKind.FunctionExpression
715715

716716
name?: PropertyName;
717717
typeParameters?: NodeArray<TypeParameterDeclaration>;
@@ -814,8 +814,9 @@ namespace ts {
814814
}
815815

816816
/**
817-
* There aren't any explicit subtypes of VariableLikeDeclaration,
817+
* There aren't any explicit subtypes of VariableLikeDeclaration;
818818
* it's just structurally relatable to a number of types.
819+
* (Maybe it should be an intersection of the below types.)
819820
*/
820821
export interface VariableLikeDeclaration extends DeclarationBase {
821822
kind:

0 commit comments

Comments
 (0)