Reputation: 15676
Most recent version of Angular JS is 1.2.14 but the most recent version of angularjs.TypeScript.DefinitelyTyped is 0.9.1.
What does this mean? Are they compatible?
Upvotes: 1
Views: 256
Reputation: 19718
The DefinitelyTyped version number corresponds to the supported version of TypeScript, not Angular. Most definition files contain the supported version of the target library/framework in the header comment, as does the Angular definition file.
So the definition file supports Angular 1.2+
and TypeScript 0.9.1
.
Upvotes: 2