DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Trending

  • Zero-Downtime Deployments for Java Apps on Kubernetes
  • Implementing Secure API Gateways for Microservices Architecture
  • The Middleware Gap in AI Agent Frameworks
  • Migrate a Hardcoded LangGraph Agent to LaunchDarkly AI Configs in 20 Minutes

How the TypeScript Exclude Type Works

Let's take a look at how the exclude type works in TypeScript

By 
Johnny Simpson user avatar
Johnny Simpson
·
Apr. 15, 22 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
7.7K Views

Join the DZone community and get the full member experience.

Join For Free

In TypeScript, the Exclude utility type lets us exclude certain members from an already defined union type. That means we can take an existing type, and remove items from it for specific situations.

Let's look at how the exclude utility type works in TypeScript.

Utility Types

Utility Types are types defined in TypeScript to solve particular problems. If you're new to defining custom types in TypeScript, read my guide on defining custom types here.

How the Exclude Type Works in TypeScript

In TypeScript, we can define a specific type called a union type. A union type is a list of possible values for something. For example:

TypeScript
 
type myUnionType = "x" | "y" | "z" | "a"


Above, if we give something the type myUnionType, then it will only be able to be 4 values: x, y, z or a. For example:

TypeScript
 
type myUnionType = "x" | "y" | "z" | "a"

// This works!
let myString:myUnionType = "x"

// This throws an error! "Type '"some-string"' is not assignable to type 'myUnionType'.
let secondString:myUnionType = "some-string"


So now we've covered the basics of how union types work, let's talk about Exclude.

The Exclude Type

Suppose we have a situation where we want to use myUnionType, but we don't want to include 'a' in the valid list of values. This can happen in real life in an API response - suppose you have a standard API response type, but you want to remove a field in a particular situation from that API type.

That's where we can use Exclude. Exclude has the syntax Exclude<UnionType, ExcludedMembers>. We pass in our normal union type, and then say which members we want to remove from it in the second argument.

Let's try it:

TypeScript
 
type myUnionType = "x" | "y" | "z" | "a"

// This works!
let lemon:myUnionType = "a"

// This throws an error! Type '"a"' is not assignable to type '"x" | "y" | "z"'.
let noLemonsPlease:Exclude<MyUnionType, "a"> = "a"


The second variable, noLemonsPlease throws an error, since we used Exclude to remove 'a' from our union type for this specific variable. That means we can use the type as normal elsewhere, and then exclude members when we feel like it with Exclude.

If we want to remove more than one member, we just have to separate them with a |:

TypeScript
 
type myUnionType = "x" | "y" | "z" | "a"

// This works!
let lemon:myUnionType = "a"

let noLemonsPlease:Exclude<myUnionType, "a"> = "x"
//  ^
//  └ - - Type is  "x" | "y" | "z"

let noApplesOrLemons:Exclude<myUnionType, "a" | "y"> = "x";
//  ^
//  └ - - Type is  "x" | "z"

let onlyRaspberries:Exclude<myUnionType, "a" | "y" | "z"> = "x";
//  ^
//  └ - - Type is  "x"

let backToLemons:myUnionType = "a"
//  ^
//  └ - - Type is  "x" | "y" | "z" | "a"


The Exclude type, therefore, gives us the flexibility to remove specific elements when it suits us and keep them there when we need them again.

Opinions expressed by DZone contributors are their own.

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook