mxsdev / ts-type-explorer

VSCode Extension & utilities for exploring TypeScript type information
https://marketplace.visualstudio.com/items?itemName=mxsdev.typescript-explorer&ssr=false
159 stars 4 forks source link

Union of object properties not working #58

Open swingthrough opened 1 day ago

swingthrough commented 1 day ago
type Original = {
    propA?: string;
    propB?: string;
};

type Unioned = Original & {
    propB?: string[];
};

Clicking on Unioned doesn't update the type tree with the type.