Reputation: 111
On the Github repository for TypeScript, the pdf is 4 years old (TypeScript Language Specification version 1.8 january 2016), but the version of the source code is 3.7.5.
Is this document still valid and the numbers are not in sync, or has there been 4 years without adding new features to TypeScript and only correcting bugs?
Upvotes: 11
Views: 2966
Reputation: 5002
The language spec is out of date. As discussed in this github issue, this is not currently a priority for the language maintainers.
You can see the up-to-date documentation here, including the new features in the language (there's been plenty of them since 1.8).
Upvotes: 13