Does the stream have an interface library similar to DefinitellyTyped in Typescript?

I start with a thread, switching from Typescript. TS contains a large library of interfaces in DefnitellyTyped.

Does the stream have a similar interface library? Looking for a library for React and ReactDOM, Underscore, and more.

+4
source share
2 answers

Now it: https://github.com/flowtype/flow-typed

flow-typedis a repository of a third-party definition library interface for use with Flow .

GitHub, CLI ( -) libdef :

$ npm install -g flow-typed
$ cd /path/to/my/project
$ flow-typed install -f 0.30 rxjs@5.0.0
+3

Source: https://habr.com/ru/post/1611683/


All Articles