Closed
Description
For the previous versions of [email protected]
I've been able to find the typescript declarations in a single file:
https://github.com/Reactive-Extensions/RxJS/blob/master/ts/rx.d.ts
I prefer downloading the minified file off the CND from:
https://cdnjs.cloudflare.com/ajax/libs/rxjs/4.1.0/rx.js
Then importing that file using:
global.RX = require('./rx.min')
But I can't find this single file declarations for the latest [email protected]
anywhere. I tried downloading the release and running all the npm run compile_dist_*
but the single file declarations was never produced.
Is there any other way I can generate all the declarations into one contained file that represents the CND's minified release builds? Thank you! :D