Using the JavaScript Symbol primitive in TypeScript| www.typescriptlang.org
Using the mixin pattern with TypeScript| www.TypeScriptlang.org
Learn TypeScript if you have a background in object-oriented languages| www.typescriptlang.org
How to use unions and intersection types in TypeScript| www.typescriptlang.org
How to add type checking to JavaScript files using TypeScript| www.typescriptlang.org
Step one in learning TypeScript: The basic types.| www.typescriptlang.org
Learn how TypeScript extends JavaScript| www.typescriptlang.org
Learn TypeScript from scratch| www.typescriptlang.org
Using JSX with TypeScript| www.typescriptlang.org
How to add type checking to JavaScript files using TypeScript| www.typescriptlang.org
Using the mixin pattern with TypeScript| www.typescriptlang.org
Recommendations for writing d.ts files| www.typescriptlang.org
How code flow analysis works in TypeScript| www.typescriptlang.org
Generating types by re-using an existing type.| www.typescriptlang.org
How JavaScript handles communicating across file boundaries.| www.typescriptlang.org
Generating mapping types which change properties via template literal strings.| www.typescriptlang.org
How TypeScript describes the shapes of JavaScript objects.| www.typescriptlang.org
TypeScript 3.7 Release Notes| www.typescriptlang.org
Create types which act like if statements in the type system.| www.typescriptlang.org
TypeScript Decorators overview| www.typescriptlang.org
Learn TypeScript if you have a background in functional programming| www.typescriptlang.org
How TypeScript enums work| www.typescriptlang.org
What JSDoc does TypeScript-powered JavaScript support?| www.typescriptlang.org
Learn about how Functions work in TypeScript.| www.typescriptlang.org
Understand how TypeScript uses JavaScript knowledge to reduce the amount of type syntax in your projects.| www.typescriptlang.org
Types which take parameters| www.typescriptlang.org
The language primitives.| www.typescriptlang.org
Types which are globally included in TypeScript| www.typescriptlang.org
I've written many words about TypeScript and I'm sure I've read even more. Here are four words that make me cringe every time I see them. If you write about TypeScript, please steer clear of these!| effectivetypescript.com
Sometimes when writing TypeScript, some of the things you’d usually do in JavaScript work a little different and cause some weird, and puzzling situations. Sometimes you just want to assign a value to an object property and get a weird error like “Type ‘string | number’ is not assignable to type ‘never’. Type ‘string’ is not assignable to type ‘never’.(2322)”| fettblog.eu
The Array.prototype.includes function allows searching for a value within an array. If this value is present, the function returns true! How handy! Of course, TypeScript has proper typings for this JavaScript functionality.| fettblog.eu