fix(dts): JsxSpreadAttribute - remove name from types (#54599)

This commit is contained in:
David Sherret
2023-06-20 20:35:58 -07:00
committed by GitHub
parent f647b11846
commit b5adef59ec
3 changed files with 0 additions and 3 deletions
-1
View File
@@ -3259,7 +3259,6 @@ export type JsxAttributeValue =
export interface JsxSpreadAttribute extends ObjectLiteralElement {
readonly kind: SyntaxKind.JsxSpreadAttribute;
readonly name: PropertyName;
readonly parent: JsxAttributes;
readonly expression: Expression;
}
-1
View File
@@ -5451,7 +5451,6 @@ declare namespace ts {
type JsxAttributeValue = StringLiteral | JsxExpression | JsxElement | JsxSelfClosingElement | JsxFragment;
interface JsxSpreadAttribute extends ObjectLiteralElement {
readonly kind: SyntaxKind.JsxSpreadAttribute;
readonly name: PropertyName;
readonly parent: JsxAttributes;
readonly expression: Expression;
}
-1
View File
@@ -1398,7 +1398,6 @@ declare namespace ts {
type JsxAttributeValue = StringLiteral | JsxExpression | JsxElement | JsxSelfClosingElement | JsxFragment;
interface JsxSpreadAttribute extends ObjectLiteralElement {
readonly kind: SyntaxKind.JsxSpreadAttribute;
readonly name: PropertyName;
readonly parent: JsxAttributes;
readonly expression: Expression;
}