``` type Original = { propA?: string; propB?: string; }; type Unioned = Original & { propB?: string[]; }; ``` Clicking on `Unioned` doesn't update the type tree with the type.