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
fromEmitter({on: <T>(x: T,f: (x: T)=>void)=>{}off: (()=>{})asany}).event("foo")// Expected Observable<"foo"> but doesn't work// because right now we manually check overloads and// not via inference because typescript doesn't support inference liketypeTest=(<T>(x: T)=>T)extends((x: string)=> infer U) ? U : never;// Expected `string` but is `unknown`
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: