Skip to content

Nested unions (and intersections) are eagerly flattened #42075

Closed
@marijnh

Description

@marijnh

TypeScript Version: 4.1.3

Search Terms: nested union, flatten union

Code

type T = number | string
let x: T | null // Inspect the type of x

Expected behavior:

Since in most cases, TypeScript takes care to preserve type names, I'd hope x to get type T | null.

Actual behavior:

Union types that are part of another union type are eagerly flattened into the outer type, producing a type printed as number | string | null.

I am running into this when using the TypeScript compiler as a library as part of a documentation generating system. I have some named union types in my API that become noisy and hard to interpret for users when they are expanded every time they appear in some union type.

Playground Link: here

Related Issues: No.

Activity

MartinJohns

MartinJohns commented on Dec 23, 2020

@MartinJohns
Contributor

Duplicate of #35654.

marijnh

marijnh commented on Dec 23, 2020

@marijnh
Author

I agree, closing this one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    DuplicateAn existing issue was already created

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @marijnh@MartinJohns@RyanCavanaugh

        Issue actions

          Nested unions (and intersections) are eagerly flattened · Issue #42075 · microsoft/TypeScript