Skip to content

Commit b39c319

Browse files
committed
Fix lint
1 parent 573040f commit b39c319

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: src/compiler/types.ts

+2-3
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,9 +814,8 @@ 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.)
820819
*/
821820
export interface VariableLikeDeclaration extends DeclarationBase {
822821
kind:

0 commit comments

Comments
 (0)