Article image Exploring TypeScript Utility Types

42. Exploring TypeScript Utility Types

Page 72 | Listen in audio

TypeScript, a superset of JavaScript, adds static typing to the language, providing developers with powerful tools to catch errors early and write more robust code. One of the most significant features TypeScript offers is its set of utility types. These utility types are predefined types that can transform and compose types in various ways, enabling developers to write more expressive and flexible code. In this exploration, we will delve into the world of TypeScript utility types, understanding their purpose, use cases, and how they can enhance your development workflow.

At their core, utility types are designed to operate on existing types, transforming them to meet specific requirements. This transformation can involve making properties optional, required, readonly, or even picking and omitting certain properties from a type. Let's explore some of the most commonly used utility types and their applications.

Partial<T>

The Partial<T> utility type is used to make all properties of a given type optional. This can be particularly useful when dealing with functions that need to accept objects with optional properties. For example, consider an interface User:

interface User {
  name: string;
  age: number;
  email: string;
}

If you want to create a function that updates a user, but you don't want to require all properties to be provided, you can use Partial<User>:

function updateUser(user: Partial<User>) {
  // Update logic here
}

With Partial<User>, you can now call updateUser with any subset of the User properties, making your function more flexible.

Required<T>

Conversely, the Required<T> utility type makes all properties of a type required. This can be useful when you want to ensure that an object is fully populated before performing certain operations. Consider the following example:

interface Product {
  id?: number;
  name?: string;
  price?: number;
}

To ensure that a product object has all properties defined before processing, you can use Required<Product>:

function processProduct(product: Required<Product>) {
  // Processing logic here
}

Now, processProduct will only accept fully populated product objects, reducing the risk of runtime errors.

Readonly<T>

The Readonly<T> utility type makes all properties of a type immutable, preventing them from being reassigned. This is useful when you want to enforce immutability in your code, ensuring that objects remain unchanged after their initial creation. For example:

interface Settings {
  theme: string;
  language: string;
}

By using Readonly<Settings>, you can create a settings object that cannot be modified:

const appSettings: Readonly<Settings> = {
  theme: 'dark',
  language: 'en'
};

// This will cause a compile-time error
appSettings.theme = 'light';

Pick<T, K>

The Pick<T, K> utility type allows you to select a subset of properties from a type. This is particularly useful when you need to work with a smaller view of a larger type. For instance, consider:

interface Person {
  name: string;
  age: number;
  address: string;
}

If you only need the name and age properties, you can use Pick<Person, 'name' | 'age'>:

type NameAndAge = Pick<Person, 'name' | 'age'>;

const personInfo: NameAndAge = {
  name: 'Alice',
  age: 30
};

Omit<T, K>

The Omit<T, K> utility type is the opposite of Pick; it allows you to exclude specific properties from a type. This can be useful when you want to remove certain properties from a type. For example:

type PersonWithoutAddress = Omit<Person, 'address'>;

const personInfo: PersonWithoutAddress = {
  name: 'Bob',
  age: 25
};

Record<K, T>

The Record<K, T> utility type constructs an object type whose property keys are K and whose property values are T. This is particularly useful for creating maps or dictionaries. For example, if you want to create a map of user IDs to user names:

type UserMap = Record<number, string>;

const users: UserMap = {
  1: 'Alice',
  2: 'Bob',
  3: 'Charlie'
};

Extract<T, U>

The Extract<T, U> utility type extracts from T those types that are assignable to U. This can be useful when you want to filter a union type to only include certain types. For instance:

type StringOrNumber = string | number | boolean;

type OnlyStringOrNumber = Extract<StringOrNumber, string | number>;

In this example, OnlyStringOrNumber will be string | number, excluding the boolean type.

Exclude<T, U>

The Exclude<T, U> utility type is the opposite of Extract; it constructs a type by excluding from T all types that are assignable to U. For example:

type WithoutBoolean = Exclude<StringOrNumber, boolean>;

In this case, WithoutBoolean will be string | number, excluding the boolean type.

NonNullable<T>

The NonNullable<T> utility type removes null and undefined from a type. This is useful when you want to ensure that a type does not include these values. For instance:

type NullableString = string | null | undefined;

type NonNullableString = NonNullable<NullableString>;

Here, NonNullableString will be just string, excluding null and undefined.

ReturnType<T>

The ReturnType<T> utility type extracts the return type of a function type. This can be useful when you want to infer the return type of a function without explicitly specifying it. For example:

function getUser(): User {
  return { name: 'John', age: 40, email: '[email protected]' };
}

type UserReturnType = ReturnType<typeof getUser>;

InstanceType<T>

The InstanceType<T> utility type extracts the instance type of a constructor function type. This is useful when you want to infer the type of an instance created by a constructor. For example:

class Car {
  make: string;
  model: string;
  constructor(make: string, model: string) {
    this.make = make;
    this.model = model;
  }
}

type CarInstanceType = InstanceType<typeof Car>;

In conclusion, TypeScript utility types provide a powerful mechanism for transforming and composing types, enabling developers to write more flexible and expressive code. By leveraging these utility types, you can create more robust type definitions, reduce redundancy, and improve the maintainability of your codebase. Whether you're making properties optional, enforcing immutability, or extracting specific types from unions, utility types offer a wide range of capabilities to meet your type manipulation needs. As you continue to explore TypeScript, understanding and utilizing these utility types will undoubtedly enhance your ability to write clean, efficient, and type-safe JavaScript applications.

Now answer the exercise about the content:

What is the primary purpose of utility types in TypeScript?

You are right! Congratulations, now go to the next page

You missed! Try again.

Article image Understanding Type Guards

Next page of the Free Ebook:

73Understanding Type Guards

7 minutes

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text