Variadic tuple types coming to TypeScript 4.0

This PR implements variadic tuple types, i.e. the ability for tuple types to have spreads of generic types that can be replaced with actual elements through type instantiation. The PR effectively i… Read more

Similar

Top Things to Know about TypeScript

TypeScript is a superset of JavaScript that provides typed nature to your code. TypeScript can be used for cross-browser development and is an open source project. Bipin Joshi shares a quick overview of the top 10 features of this new scripting language. (more…)

Read more »

Hybrid Types in TypeScript

Yesterday I’ve been refactoring one of our internal library in GWI from JavaScript to TypeScript. As a JavaScript veteran I like to use some edgy non-conventional & pre-ES 2015 coding styles. I’m not using prototype, class or this much often. I’...

Read more »