Function isJsxTagNamePropertyAccess

  • Test if a node is a JsxTagNamePropertyAccess.

    Parameters

    • node: Node

    Returns node is JsxTagNamePropertyAccess

    Whether the given node appears to be a JsxTagNamePropertyAccess.

    Example

    declare const node: ts.Node;

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