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

This commit is contained in:
David Sherret
2023-06-20 23:35:58 -04:00
committed by GitHub
parent f647b11846
commit b5adef59ec
3 changed files with 0 additions and 3 deletions

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;
}