Skip to content

Instantly share code, notes, and snippets.

@iamssen
Created November 28, 2015 07:29
Show Gist options
  • Save iamssen/7e084e3defe4015daf91 to your computer and use it in GitHub Desktop.
Save iamssen/7e084e3defe4015daf91 to your computer and use it in GitHub Desktop.
Extract typescript typings
npm install @reactivex/rxjs;
mkdir -p typings/rxjs;
echo "import * as Rx from './Rx'; export module '@reactivex/rxjs' { export = Rx; }" > typings/rxjs/rxjs.d.ts;
cd node_modules/@reactivex/rxjs/dist/es6;
find . -type f -iname '*.d.ts' | cpio -pdm ../../../../../typings/rxjs/;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment