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
there is a problem with unions -- it types the onCompletedSucessfully argument as a union of two functions rather than as a function with a union argument. i.e., the render functions becomes (onCompletedSucesfully:TypeA)=>{} | (onCompletedSucesfully: TypeB)=>{} rather than (onCompletedSucesfully:TypeA|TypeB)=>{}.
The text was updated successfully, but these errors were encountered:
there is a problem with unions -- it types the
onCompletedSucessfully
argument as a union of two functions rather than as a function with a union argument. i.e., the render functions becomes(onCompletedSucesfully:TypeA)=>{} | (onCompletedSucesfully: TypeB)=>{}
rather than(onCompletedSucesfully:TypeA|TypeB)=>{}
.The text was updated successfully, but these errors were encountered: