We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 573040f commit b39c319Copy full SHA for b39c319
src/compiler/types.ts
@@ -711,7 +711,7 @@ namespace ts {
711
| SyntaxKind.SetAccessor
712
| SyntaxKind.Constructor
713
| SyntaxKind.ArrowFunction
714
- | SyntaxKind.FunctionExpression
+ | SyntaxKind.FunctionExpression;
715
716
name?: PropertyName;
717
typeParameters?: NodeArray<TypeParameterDeclaration>;
@@ -814,9 +814,8 @@ namespace ts {
814
}
815
816
/**
817
- * There aren't any explicit subtypes of VariableLikeDeclaration;
+ * There aren't any explicit subtypes of VariableLikeDeclaration,
818
* it's just structurally relatable to a number of types.
819
- * (Maybe it should be an intersection of the below types.)
820
*/
821
export interface VariableLikeDeclaration extends DeclarationBase {
822
kind:
0 commit comments