Tag Archives: typescript
React, redux and redux-thunk with typescript
I tried it and it looks strange, verbose and painful. But if you want to try it, please take a look at: https://github.com/piotrwitek/react-redux-typescript-guide https://levelup.gitconnected.com/react-and-redux-with-typescript-da0c37537a79 (together with https://github.com/JonJam/react-redux-ts/tree/68e8cca4a6e6214b4acb030cf3fdb3321b636085/src)
Как typescript выводит классы для es5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
var Person = (function() { function Person(name) { this.name = name; } Person.prototype.greet = function greet() { return "Hi, " + this.name + "!"; }; return Person; }()); var bu = new Person("bu"); console.log(bu.greet()); |
https://jsbin.com/zowahi/edit?js http://www.typescriptlang.org/play/
AngularJS-приложение на TypeScript
Большую часть видео рассказывают о том, что вообще такое TypeScript, а примеры с AngularJS начинаются на 16-17 минуте. https://youtu.be/U7NYTKgkZgo В конце видео есть ссылки на код на гитхабе. Вот они: https://github.com/DanWahlin/AngularIn20TypeScript https://github.com/DanWahlin/AngularIn20JavaScript https://github.com/DanWahlin/AngularTypeScript