Understanding Conditional Types in TypeScript | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (173).NET Core  (29).NET MAUI  (203)Angular  (107)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (211)BoldSign  (13)DocIO  (24)Essential JS 2  (106)Essential Studio  (200)File Formats  (65)Flutter  (132)JavaScript  (219)Microsoft  (118)PDF  (81)Python  (1)React  (98)Streamlit  (1)Succinctly series  (131)Syncfusion  (897)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (50)Windows Forms  (61)WinUI  (68)WPF  (157)Xamarin  (161)XlsIO  (35)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (146)Chart  (127)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (618)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (39)Extensions  (22)File Manager  (6)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (501)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (42)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (381)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (17)Web  (582)What's new  (323)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Understanding Conditional Types in TypeScript

Understanding Conditional Types in TypeScript

Conditional types allow developers to use conditions when introducing their types. It is a bit of an advanced feature in TypeScript, and many developers do not use it in day-to-day work. But knowing these features can certainly help you to write better code. In this blog, I will introduce you to conditional types in TypeScript.

What Are Conditional Types?

Conditional types are non-uniform type mappings. In other words, they are type transformations that differ depending on a condition. Let’s take a look at a code snippet.

interface Animal {
}
interface Dog extends Animal {
}
 
type Ex1 = Dog extends Animal ? number : string; //type of Ex1 = number

type Ex2 = RegExp extends Animal ? number : string; // type of Ex2 = string

Here, types Ex1 and Ex2 are decided by the condition of whether they are extending the type Animal or not. As the type Dog is extending the Animal type, the condition evaluates as true, and the Ex1 type is evaluated to the type number. For Ex2, since the RegExp type is not extending the Animal type, the condition evaluates as false. Therefore, the Ex2 type is evaluated to the type string.

Syncfusion JavaScript UI controls are the developers’ choice to build user-friendly web applications. You deserve them too.

Why Do We Need Conditional Types?

As mentioned, conditional types are similar to the ternary operator, which we’ve all used in JavaScript. Conditional types allow developers to decide the type of a certain variable or the method’s return type based on a condition.

However, using conditions and types together might confuse you if you haven’t used them before. Therefore, let me help you understand conditional types with a simple example. First, let’s take a look at this simple function.

function createLabel(label) {
   return label && label.replace(/\s/g, "_");
}

Here, the createLabel method takes a text label as an input parameter. The createLabel() function returns null if the label value equals null. If not, it replaces all the white spaces in the label with underscores and returns the label. Although this function looks straightforward with no issues, TypeScript may throw an error saying that the value could be null.

For example, if you invoke the createLabel() function with createLabel(“foo and poo”).toUpperCase(), it will throw an error since TypeScript is unable to comprehend the type of input.

To avoid this, we can use overloaded functions.

function createLabel(label:string): string;
function createLabel(label:null): null;
function createLabel(label: string | null): string | null;

Here, the function overloads resolve the previously discussed issue. But these function overloads introduce a new set of problems. For example, if they’re used in a library, having to sort among these function overloads every time this function is called can be cumbersome and would decrease the library’s performance. On the other hand, if the requirement changes and we need to add another variable to the same function, the number of function overloads we need to write will grow exponentially.

So, we need another solution for this issue, and that’s where the conditional types come into play.

How Conditional Types Work

With conditional types, the createLabel() function will look like the following.

function createLabel<T extends string | null>(label: T): T extends string ? string : null {
    return (label ? label.replace(/\s/g, "_") : null) as any;
}

Note: Here, I have cast the function’s return value as any. This is an open issue in TypeScript, and the only way to get the benefit of using conditional operators is to cast the return this way.

In the previous function, I introduced a new syntax for the types, which works similarly to the ternary operator. If the condition is true, it will take the first type; if not, it will take the second type. This implementation avoids the previous problems we had with the function overloads, as it can evaluate the type in the runtime.

In conditional types, the most important syntax is the extends keyword, as it decides which type of condition should finally be evaluated. Therefore, understanding how the extends keyword works will help in better understanding the conditional types.

Let’s focus on understanding the extends keyword.

Every property of the Syncfusion JavaScript controls is completely documented to make it easy to get started.

extends keyword

Take a look at the following example of a conditional type.

A extends B ? A : B

This condition will be true if A extends B. This means that the value of type A should be assignable to a variable in type B. Therefore, the extends keyword is actually checking whether A is assignable to type B. Based on this condition, the conditional type will decide which type it should finally evaluate.

Other than being capable of evaluating the type based on a condition, conditional types have a few other exciting features that make them more attractive.

Features of Conditional Types in TypeScript

Inferring with Conditional Types

Condition types can handle ambiguities with the help of the infer keyword. We can use the infer keyword after the extends keyword to infer types from the true conditional branch.

Let’s take a look at the following example.

type Box<T> = T extends Array<infer A> ? A : never;
 
type Books = Box<string[]> // type string

In this example, the type of Books is a string, since the generic is a string array. If we change the generic to any type, which is not an array, the type of Books will be never. Conditional types are capable of gracefully handling such ambiguities in types.

Distributive conditional types

Another feature of conditional types is their distribution capability when a union type is given while working with generics. This might sound confusing, so let’s look at an example.

type Apple = {};
type Banana = {};
type Orange = {}
 
type Fruits = Apple | Banana | Orange;
 
type Box<T> = T extends any ? T[] : never;
 
type FruitBox = Box<Fruits>; //Apple[] | Banana[] | Orange[]

Conditional types can identify the underlying types of the union, and the conditional type be applied to each member of the union recursively.

type FruitBox = Box<Apple> | Box<Banana> | Box<Orange>

To make it easy for developers to include Syncfusion JavaScript controls in their projects, we have shared some working ones.

Then, it will apply the conditional type to each type separately.

type FruitBox = Apple[] | Banana [] | Orange[];

Easily build real-time apps with Syncfusion’s high-performance, lightweight, modular, and responsive JavaScript UI components.

Conclusion

Conditional types might not be a feature used in daily work. But it is a very powerful feature that TypeScript introduced to handle types with conditions dynamically. Using conditional types when implementing libraries and handling APIs can help developers improve their code base.

I hope you have found this article helpful and thank you for reading it!

Syncfusion’s Essential JS 2 is the only suite you will ever need to build an app. It contains over 65 high-performance, lightweight, modular, and responsive UI components in a single package. Download a free trial to evaluate the controls today.

If you have any questions or comments, you can contact us through our support forumssupport portal, or feedback portal. We are always happy to assist you!

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed