FlowIDE icon indicating copy to clipboard operation
FlowIDE copied to clipboard

"Show type" does not include type parameters

Open DanielHeath opened this issue 8 years ago • 0 comments

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>.

DanielHeath avatar Jul 30 '17 23:07 DanielHeath