Test if a node is a JsxAttributeValue.
JsxAttributeValue
Whether the given node appears to be a JsxAttributeValue.
declare const node: ts.Node;if (isJsxAttributeValue(node)) { // ...} Copy
declare const node: ts.Node;if (isJsxAttributeValue(node)) { // ...}
Test if a node is a
JsxAttributeValue
.