Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

False negative typecheck error after using Omit with union type. #53696

Closed
Akiyamka opened this issue Apr 7, 2023 · 3 comments
Closed

False negative typecheck error after using Omit with union type. #53696

Akiyamka opened this issue Apr 7, 2023 · 3 comments
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug

Comments

@Akiyamka
Copy link

Akiyamka commented Apr 7, 2023

Bug Report

Omitting one property from union type broke typecheck of other properties in union.
Typescript completely loose property if it abset at least in one of types from union after Omit helper,
Object literal may only specify known properties, and 'property_that_actually_exist' does not exist in type 'Omit<AnyLayer, "id">'

🔎 Search Terms

omit breaks union

🕗 Version & Regression Information

  • This is the behavior in every version I tried, and I reviewed the FAQ for entries about

⏯ Playground Link

Playground link with relevant code

💻 Code

interface FillLayer {
    id: string;
    type: 'fill';
    property_that_actually_exist?: string;
}

export interface CustomLayerInterface {
    id: string;
    type: 'custom';
}

export type AnyLayer =
    | FillLayer
    | CustomLayerInterface;


/* Test case with omit */
const layerStyles = Array<Omit<AnyLayer, 'id'>>();
layerStyles.push({
    type: 'fill',
    property_that_actually_exist: 'source',
})

/* Test case without omit */
const layerStyles2 = Array<AnyLayer>();
layerStyles2.push({
    id: 'foo',
    type: 'fill',
    property_that_actually_exist: 'source',
})

🙁 Actual behavior

false negative typecheck error after using Omit with union type.

🙂 Expected behavior

Omit not broke union typecheck

@Akiyamka
Copy link
Author

Akiyamka commented Apr 7, 2023

For those who encounter the same problem, a temporary solution looks like this:

export type FixedOmit<T, U> = T extends any ? Pick<T, Exclude<keyof T, U>> : never

Playground link

@RyanCavanaugh RyanCavanaugh added the Working as Intended The behavior described is the intended behavior; this is not a bug label Apr 7, 2023
@RyanCavanaugh
Copy link
Member

Omit isn't distributive and the odds we can change it to be distributive seem pretty low. See #53169

@typescript-bot
Copy link
Collaborator

This issue has been marked 'Working as Intended' and has seen no recent activity. It has been automatically closed for house-keeping purposes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug
Projects
None yet
Development

No branches or pull requests

3 participants