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
exportconstfoo: IO<string>=()=>"hello";// These assignments compile because the types are compatible, but the semantics are such that doing so is almost certainly an error.exportconstbar: Lazy<string>=foo;exportconstbaz: ()=>string=foo;
The text was updated successfully, but these errors were encountered:
We should also catch when a Promise is being assigned to an IO like IO.of(Axios.get(...)), or any async effect being assigned to an IO for that matter.
The text was updated successfully, but these errors were encountered: