An open API service indexing awesome lists of open source software.

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

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).