All Articles

There Is No Such Thing As A Generic

Matt Pocock
Matt PocockMatt is a well-regarded TypeScript expert known for his ability to demystify complex TypeScript concepts.

If you don't understand generics in TypeScript, I think there's something you've misunderstood.

There is no such thing as a 'generic'.

There are generic types, generic functions, and generic classes.

There are type arguments and type parameters.

You cannot 'pass' a generic, 'declare' it, or 'infer' it.

In other words, 'generic' is not a noun, it's an adjective.

"A generic"

People think of 'a generic' as something in TypeScript.

You might look at the code below and say 'we're passing a generic to useState'.

ts
import { useState } from "react";
 
useState<string>();

You might also say 'we're passing two generics to Record':

ts
type NumberRecord = Record<string, number>;

How about "Maybe declares a generic"?

ts
type Maybe<T> = T | null | undefined;

People look at the angle bracket syntax and think 'that's a generic'. But because generics can appear on functions, function calls, types, and type declarations, it's not clear what 'a generic' even is.

That's why it's such a hard concept for folks to grasp - the word is too overloaded.

So, what terms should we use instead?

Type Arguments

How would we describe this code if we couldn't use the word 'generic'?

ts
import { useState } from "react";
 
useState<string>();

We're not passing a 'generic' to useState. We are passing it a type argument. And the type argument we're passing is string.

How about Record?

ts
type NumberRecord = Record<string, number>;

We're passing two type arguments to Record. The first type argument is string, and the second type argument is number.

So - a type argument works just like a function argument. We can pass it to a function, class, or type.

But not all types, functions, and classes can receive type arguments:

ts
type Example = PropertyKey<string>;
Type 'PropertyKey' is not generic.2315Type 'PropertyKey' is not generic.
 
encodeURIComponent<string>();
Expected 0 type arguments, but got 1.2558Expected 0 type arguments, but got 1.
 
new Event<string>();
Expected 0 type arguments, but got 1.2558Expected 0 type arguments, but got 1.

So how do we know which ones can receive them?

Type Parameters

Let's look at our Maybe<T> from earlier.

ts
type Maybe<T> = T | null | undefined;

Here, Maybe is declaring a type parameter. The type parameter is T.

This means that Maybe MUST be passed a type argument. If we don't pass it a type argument, we get an error:

ts
type Example = Maybe;
Generic type 'Maybe' requires 1 type argument(s).2314Generic type 'Maybe' requires 1 type argument(s).

So, a type parameter is like a function parameter. It declares that you can pass a type argument to the type, function, or class.

Generic Types

Let's bring the phrase 'generic' back into our vocabulary and give it a proper definition.

generic - adj: a type, function, or class that declares one or more type parameters.

So, Maybe is a generic type because it declares a type parameter.

And PropertyKey, which we saw earlier, is NOT generic. Even the error says so.

ts
type Example = PropertyKey<string>;
Type 'PropertyKey' is not generic.2315Type 'PropertyKey' is not generic.

So, generic types are simply types that declare type parameters.

Generic Functions and Generic Classes

Functions and classes can also declare type parameters. When they do, they become generic functions and generic classes and can receive type arguments.

ts
const myFunc = <T>() => {
// implementation...
};
 
myFunc<string>();
 
class MyClass<T> {
// implementation...
}
 
new MyClass<string>();

This can be used in all sorts of ways. By far the most popular is to provide type information to third-party libraries. In the example below, how would useState know what type it's supposed to be returning?

ts
import { useState } from "react";
 
const [message, setMessage] = useState();
const message: undefined

It can't - so we have to pass a type argument to it.

ts
import { useState } from "react";
 
const [message, setMessage] = useState<string>();
const message: string | undefined

Inferring Type Arguments

You'll notice, though, that generic functions and generic classes act differently from types. They don't require you to pass a type argument.

ts
// No error!
myFunc();
 
new MyClass();

But generic types do require you to pass one.

ts
type Example = Maybe;
Generic type 'Maybe' requires 1 type argument(s).2314Generic type 'Maybe' requires 1 type argument(s).

Why is this? Well, if you don't pass a type argument to a generic function or generic class, it'll attempt to infer it from the runtime arguments.

This is how useState works under the hood. Its declaration looks something like this (simplified):

ts
declare function useState<T>(
initial?: T
): [T, (newValue: T) => void];

You can see that it accepts T as a type parameter and returns a tuple containing T and a function to update it.

If we pass a runtime argument to it, TypeScript can infer the type argument from that:

ts
// T is inferred as string!
const [message, setMessage] = useState("Hello!");
const message: string
 
// T is inferred as number!
const [id, setId] = useState(1);
const id: number

Now that we're passing a runtime argument, TypeScript can infer the type argument from it.

'Generic' is an adjective

Remove the noun 'generic' from your vocabulary. Replace it with 'type argument' and 'type parameter'. Use it as an adjective only.

I'll give you one concession - the plural, 'generics'. It's too widely ingrained to be gotten rid of.

Let's keep it - but let's consider it a useful shorthand for 'generic types', 'generic functions', and 'generic classes'.

Matt's signature

Share this article with your friends

`any` Considered Harmful, Except For These Cases

Discover when it's appropriate to use TypeScript's any type despite its risks. Learn about legitimate cases where any is necessary.

Matt Pocock
Matt Pocock

No, TypeScript Types Don't Exist At Runtime

Learn why TypeScript's types don't exist at runtime. Discover how TypeScript compiles down to JavaScript and how it differs from other strongly-typed languages.

Matt Pocock
Matt Pocock

Deriving vs Decoupling: When NOT To Be A TypeScript Wizard

In this book teaser, we discuss deriving vs decoupling your types: when building relationships between your types or segregating them makes sense.

Matt Pocock
Matt Pocock

NoInfer: TypeScript 5.4's New Utility Type

Learn how TypeScript's new utility type, NoInfer, can improve inference behavior by controlling where types are inferred in generic functions.

Matt Pocock
Matt Pocock