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

    Function isSuperPropertyAccessExpression

    • Test if a node is a SuperPropertyAccessExpression.

      Parameters

      • node: Node

      Returns node is SuperPropertyAccessExpression

      Whether the given node appears to be a SuperPropertyAccessExpression.

      declare const node: ts.Node;

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