What is typescript typing?

I just started playing with angular 2, and I saw that many projects available on the Internet have a folder called typings . Digging more into the problem, I found that it has something to do with https://www.npmjs.com/package/typings . I read their documentation, but I definitely did not understand why we need a vise. Can you give an example where typical or useful are needed. Thanks

+42
angular typescript
Jan 04 '16 at 11:31 on
source share
1 answer

AFAIK allows you to use JS libraries like type annotations, such as fully typed TypeScript code. If they are provided for the JS library, you get the right support for autocomplete and lint checking, ...

see also

+51
Jan 04 '16 at 11:38 on
source share



All Articles