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.

    Example

    declare const node: ts.Node;

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