Skip to content

Instantly share code, notes, and snippets.

@holgergp
Created January 14, 2022 09:52
Show Gist options
  • Select an option

  • Save holgergp/f2877f849a4a6f4d574c09a7eb253ad8 to your computer and use it in GitHub Desktop.

Select an option

Save holgergp/f2877f849a4a6f4d574c09a7eb253ad8 to your computer and use it in GitHub Desktop.
First Awaited Code (TypeScript 4.5 Article)
async function usingAwaitedAsAReturnType(): Awaited {
const result = await Promise.resolve(true)
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment