asyncawait icon indicating copy to clipboard operation
asyncawait copied to clipboard

Examples in typescript

Open rajjaiswalsaumya opened this issue 5 years ago • 1 comments

I dont get how https://github.com/yortus/asyncawait/issues/13 is in typescript. Can you add concrete examples in typescript for basic.

I cant use javascript syntax such as var. For me await does not work. I am calling an api and trying to await for promise resolution.

rajjaiswalsaumya avatar Jul 13 '19 23:07 rajjaiswalsaumya

Hi @rajjaiswalsaumya, these days you shouldn't need to use this library for basic scenarios like in #13. TypeScript and JavaScript have native async/await syntax built in to the language now. Even if you are using an environment where native async/await are not supported, TypeScript will downlevel it to equivalent ES5 code for you.

If you are still having trouble, can you post some sample code showing the problem you're having?

yortus avatar Jul 15 '19 04:07 yortus