You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type Foo = (one: string) => number;
function fooOver() : Foo {
return one => parseInt(one); // <-- one is string
}
type Bar = <a>(one: string) => a;
function barOver() : Bar {
return one => parseInt(one); // <-- one is god knows what
}