https://github.com/jakebailey/api-extractor-export-star-internal-namespace
https://github.com/jakebailey/api-extractor-export-star-internal-namespace
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jakebailey/api-extractor-export-star-internal-namespace
- Owner: jakebailey
- Created: 2022-09-22T23:51:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-23T00:01:14.000Z (over 3 years ago)
- Last Synced: 2025-11-19T05:32:17.620Z (7 months ago)
- Language: TypeScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
To test, run:
```sh
$ npm run api-extractor
```
Note that `dist/index.d.ts` contains:
```ts
declare namespace ns {
export {
internalFunction
}
}
export { ns }
export { }
```
But it should be:
```ts
declare namespace ns {
export {}
}
export { ns }
export { }
```
(or similar).