Test if a node is a JsxAttributeLike.
JsxAttributeLike
Whether the given node appears to be a JsxAttributeLike.
With TypeScript v5, in favor of typescript's isJsxAttributeLike.
isJsxAttributeLike
declare const node: ts.Node;if (isJsxAttributeLike(node)) { // ...} Copy
declare const node: ts.Node;if (isJsxAttributeLike(node)) { // ...}
Test if a node is a
JsxAttributeLike
.