You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
interfaceFillLayer{id: string;type: 'fill';property_that_actually_exist?: string;}exportinterfaceCustomLayerInterface{id: string;type: 'custom';}exporttypeAnyLayer=|FillLayer|CustomLayerInterface;/* Test case with omit */constlayerStyles=Array<Omit<AnyLayer,'id'>>();layerStyles.push({type: 'fill',property_that_actually_exist: 'source',})/* Test case without omit */constlayerStyles2=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
The text was updated successfully, but these errors were encountered:
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
⏯ Playground Link
Playground link with relevant code
💻 Code
🙁 Actual behavior
false negative typecheck error after using Omit with union type.
🙂 Expected behavior
Omit not broke union typecheck
The text was updated successfully, but these errors were encountered: