More Types and Syntax

Unions

We can enforce types of multiple values with a type declaration on a union

type Color = 'Green' | 'Red' | 'Blue'

let colorChoice: Color = 'Green' 
colorChoice: Color = 'Purple' // Throws an error

let colorOrNum: Color | number = 10 // OK!

Interfaces

What if we would like to enforce typings on the shape of an object?

Enter the interface!

Typescript offers us the ability to do this with interfaces:

interface DogObject {
    name: string;
    age: number;
    isGood: boolean;
    wagsTail?: boolean; // the '?' means that wagsTail is optional
}

function isGoodDog(dog: DogObject): boolean {
    let {name, age, isGood} = dog; // Object destructuring is neat!
    let message = `${name} is ${age} and is very good!${dog.wagsTail ? ' wag, wag, wag' : ''}`
    if (!isGood) {
        console.log('How dare you! All dogs are good dogs!!')
        dog.isGood = true
    }
    console.log(message)
    return true
}

let oneGoodBoy: DogObject = {
    name: 'Harley Muffinhead',
    age: 7,
    isGood: true,
    wagsTail: true 
}

let barnCat: object = {
    name: 'Scar Tatteredear',
    age: Infinity,
    clawedKiller: true,
    isGood: false
}

isGoodDog(oneGoodBoy) 
// Works!
isGoodDog(barnCat) 
// Error, barnCat is not 'DogObject' type. Argument of type 'object' is not assignable 
// to parameter of type 'DogObject'. Type '{}' is missing the following properties 
// from type 'DogObject':name, age, isGood

// If we removed the Explicit type from barnCat, isGoodDog(barnCat) would work 
// because barnCat has all the necessary values of the DogObject type

Tuples

Tuple types allow you to express an array where the type of a fixed number of elements is known, but need not be the same.

When accessing an element with a known index, the correct type is retrieved:

When accessing an element outside the set of known indices, an error will be thrown:

So can I tack more onto a tuple and just assign it a new type?

Tuples can be as long as you want; think of them like interfaces without the name. Think back to our DogObject example, you could create a tuple with those constraints, but instead of accessing those values via their keys, they're accessed by their index.

Enum

According to the TypeScript docs, Enums allow us to 'give friendly names to a set of numeric values'.

While this does enforce a Color Type that only has the values "Green", "Red", "Blue"... this little bit of TS compiles to this mess of JavaScript:

WTF

Typescript can now support Enums with strings, so you could assign certain values to certain strings

If you want to know a bit more about this bizarre type and it's usage, check out this medium article and this stack-overflow question.

The tl;dr for most devs is that Enums can be iterated over, can be used as bit flags, and have some specific use cases, but you will mostly be using Union types.

Generics<T>

What should we do if we want to enforce typings further down the scope of our function or class but don't want to explicity declare a type?

Well, TS humbly offers up the Generic type.

We can use variables between angle brackets in our type declarations to enforce consistent use of a type! Classically, you will see <T> used to represent Type however, you can name them anything you want as long as they are not reserved words or types. We can even use multiple generics in the same construct by separating them with commas: Construct<T, U, ThirdType>.

Check out this example of a simple Queue:

We can also use complex datatypes:

Intersection Types

Sometimes, when one type isn't enough, you want to merge your types. Let's say you have three types: Bear, Man, and Pig

When you create a new variable, you can assign one, two, or even three of these types! When you do that, your new variable will be able to have claws, firstName, and hog as values. You can also create a custom class if you're going to use your intersected type again

Prepare yourself... we are about to put it to work!

Last updated