Function isPropertyAccessEntityNameExpression

  • Test if a node is a PropertyAccessEntityNameExpression.

    Parameters

    • node: Node

    Returns node is PropertyAccessEntityNameExpression

    Whether the given node appears to be a PropertyAccessEntityNameExpression.

    Example

    declare const node: ts.Node;

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