My question pertains to a type that has a large structure, similar to the one below:
type Large = {
foo: 123,
bar: 123,
baz: 123
} | {
foo: 123,
bar: 123,
baz: 123
} | ...
When I hover over it in VSCode, it gets shortened like this:
https://i.sstatic.net/aHK2d.png
I'm wondering how I can view the hidden part of this type. Any advice or suggestions on this matter would be greatly appreciated.
P.S. The actual type I am dealing with is much more complex and not statically defined as shown above.