From 4d936186ab8b9c2e5259c9e1eb41fa4d2a6e751d Mon Sep 17 00:00:00 2001 From: Braden Napier Date: Tue, 19 Mar 2019 15:18:50 -0700 Subject: [PATCH] support export type named exports from typescript --- src/ExportMap.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ExportMap.js b/src/ExportMap.js index 07120754c6..561af5a542 100644 --- a/src/ExportMap.js +++ b/src/ExportMap.js @@ -452,6 +452,7 @@ ExportMap.parse = function (path, content, context) { case 'TypeAlias': // flowtype with babel-eslint parser case 'InterfaceDeclaration': case 'TSEnumDeclaration': + case 'TSTypeAliasDeclaration': case 'TSInterfaceDeclaration': case 'TSAbstractClassDeclaration': case 'TSModuleDeclaration':