Generate flowtype definition files from TypeScript
npm install flowgen2Nothing much works yet, but I plan to expand on this very soon.
```
npm install flowgen2
Add something like the following to your package.json:
``
"scripts": {
"build": "tsc",
"postbuild": "flowgen \"lib/*/\""
}
Then when you run npm run build, you should see .js.flow` files along with all your typescript defintions and plain JavaScript files.
MIT