Book Image

TypeScript Blueprints

By : Ivo Gabe de Wolff
Book Image

TypeScript Blueprints

By: Ivo Gabe de Wolff

Overview of this book

TypeScript is the future of JavaScript. Having been designed for the development of large applications, it is now being widely incorporated in cutting-edge projects such as Angular 2. Adopting TypeScript results in more robust software - software that is more scalable and performant. It's scale and performance that lies at the heart of every project that features in this book. The lessons learned throughout this book will arm you with everything you need to build some truly amazing projects. You'll build a complete single page app with Angular 2, create a neat mobile app using NativeScript, and even build a Pac Man game with TypeScript. As if fun wasn't enough, you'll also find out how to migrate your legacy codebase from JavaScript to TypeScript. This book isn't just for developers who want to learn - it's for developers who want to develop. So dive in and get started on these TypeScript projects.
Table of Contents (16 chapters)
TypeScript Blueprints
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface

Creating tagged union types


With TypeScript 2.0, you can add a tag to union types and use these as type guards. That feature is called: discriminated union types. This sounds very difficult, but in practice it is very easy. The following example demonstrates it:

interface Circle { 
  type: "circle"; 
radius: number; 
} 
interface Square { 
  type: "square"; 
  size: number; 
} 
type Shape = Circle | Square; 
function area(shape: Shape) { 
  if (shape.type === "circle") { 
    return shape.radius * shape.radius * Math.PI; 
  } else { 
    return shape.size * shape.size; 
  } 
} 

The condition in the if statements works as a type guard. It narrows the type of shape to circle in the true branch and square in the false branch.

To use this feature, you must create a union type of which all elements have a property with a string value. You can then compare that property with a string literal and use that as a type guard...