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
The Generator type in TypeScript cannot currently infer the return type from a yield expression based on the return type of the yield expression, which is causing issues. We really aren't able to have static typings on any async operations, so users will have to put them in themselves to be sure.
If TypeScript implements this functionality we should be good, but we should also consider creating our own VS Code plugin to add some Azle-specific types...for example, forcing the user to use the yield keyword if they are calling an async api
The text was updated successfully, but these errors were encountered:
The Generator type in TypeScript cannot currently infer the return type from a yield expression based on the return type of the yield expression, which is causing issues. We really aren't able to have static typings on any async operations, so users will have to put them in themselves to be sure.
Follow these issues:
If TypeScript implements this functionality we should be good, but we should also consider creating our own VS Code plugin to add some Azle-specific types...for example, forcing the user to use the yield keyword if they are calling an async api
The text was updated successfully, but these errors were encountered: