mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
fix(dts): JsxSpreadAttribute - remove name from types (#54599)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user