FlowIDE
FlowIDE copied to clipboard
"Show type" does not include type parameters
When working on code like:
type Foo<U> = {
bar: U
};
const baz: Foo<number> = {
bar: 3
};
if I right-click and select 'view type' on baz, I get shown Foo but the CLI shows Foo<number>.