Support `export * as _` syntax
Description
As a developer, many plugins etc autogenerate files which we have no control over. Some of them use export * as syntax. This plugin does not support that syntax, therefore it's useless in those scenarios.
Suggested solution
Support the export * as __ syntax.
Additional context
Error: [vite:dts] The "export * as ___" syntax is not supported yet; as a workaround, use "import * as ___" with a separate "export { ___ }" declaration
Ran into this using typechain
https://github.com/dethcrypto/TypeChain/issues/900
Validations
- [X] Read the FAQ.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
This seems to be a limitation of @microsoft/api-extractor.
This seems to be fixed by https://github.com/microsoft/rushstack/blob/main/apps/api-extractor/CHANGELOG.md#7470
作者为啥不升级呢?这是个很严重的功能问题
Fix by 7a5fe9a55d8503f4af88e935f4b7d3399a4a832e.
@qmhc @JeanBarriere thank you!