ts-api-utils - v3.0.0-rc.1
    Preparing search index...

    Function isJsxAttributeValue

    • Test if a node is a JsxAttributeValue.

      Parameters

      • node: Node

      Returns node is JsxAttributeValue

      Whether the given node appears to be a JsxAttributeValue.

      declare const node: ts.Node;

      if (isJsxAttributeValue(node)) {
      // ...
      }