Function isSuperProperty

  • Test if a node is a SuperProperty.

    Parameters

    • node: Node

    Returns node is SuperProperty

    Whether the given node appears to be a SuperProperty.

    Example

    declare const node: ts.Node;

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