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
I found a case where types yielded differ between 3.3 and 3.4, but I'm not sure if it is a regression or it is intended
interfaceI<T>{a: T}// this is different between 3.3 and 3.4typeO<T>=TextendsI<any> ? T : nevertypeB=O<I<number>>// I<number> in TS3.3, I<any> & I<number> in TS3.4 (which boils down to I<any>// this however is the sametypeO2<T>=TextendsI<infer _> ? T : nevertypeB2=O2<I<number>>// I<number> in both