Skip to content

Commit 851156d

Browse files
Add kind to JsxAttributes (microsoft#32369)
Add kind to JsxAttributes
2 parents 4f34121 + 84f4acd commit 851156d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/compiler/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1882,6 +1882,7 @@ namespace ts {
18821882
}
18831883

18841884
export interface JsxAttributes extends ObjectLiteralExpressionBase<JsxAttributeLike> {
1885+
kind: SyntaxKind.JsxAttributes;
18851886
parent: JsxOpeningLikeElement;
18861887
}
18871888

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,6 +1155,7 @@ declare namespace ts {
11551155
expression: JsxTagNameExpression;
11561156
}
11571157
interface JsxAttributes extends ObjectLiteralExpressionBase<JsxAttributeLike> {
1158+
kind: SyntaxKind.JsxAttributes;
11581159
parent: JsxOpeningLikeElement;
11591160
}
11601161
interface JsxOpeningElement extends Expression {

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,6 +1155,7 @@ declare namespace ts {
11551155
expression: JsxTagNameExpression;
11561156
}
11571157
interface JsxAttributes extends ObjectLiteralExpressionBase<JsxAttributeLike> {
1158+
kind: SyntaxKind.JsxAttributes;
11581159
parent: JsxOpeningLikeElement;
11591160
}
11601161
interface JsxOpeningElement extends Expression {

0 commit comments

Comments
 (0)