Skip to content

Instantly share code, notes, and snippets.

@hyochan
Created December 25, 2019 16:12
Show Gist options
  • Save hyochan/1afad0d9cd585c48f6e2d56442c2b156 to your computer and use it in GitHub Desktop.
Save hyochan/1afad0d9cd585c48f6e2d56442c2b156 to your computer and use it in GitHub Desktop.
Find all typescript definition files and generate flow types with flowgen
for i in $(find lib -type f -name "*.d.ts");
do sh -c "flowgen $i -o ${i%.*.*}.js.flow";
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment