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

    Function isExportKeyword

    • Test if a node is an ExportKeyword.

      Parameters

      • node: Node

      Returns node is ExportKeyword

      Whether the given node appears to be an ExportKeyword.

      declare const node: ts.Node;

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