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

    Function isJSDocText

    • Test if a node is a JSDocText.

      Parameters

      • node: Node

      Returns node is JSDocText

      Whether the given node appears to be a JSDocText.

      declare const node: ts.Node;

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