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
It is a generalization of #2049 .
I would like to see generic specifying concrete types:
// Can specify only A<number> or A<string>interfaceA<Tisnumber|string|Object>{}interfaceB<Tis number|string>extendsA<T>{}// number|string is subtype of number|string|Object .