hasura / ndc-typescript-deno

Instant Hasura Native Data Connector by writing Typescript Functions
https://hasura.io
Apache License 2.0
21 stars 3 forks source link

Inferring result for non-annotated functions. #51

Closed sordina closed 11 months ago

sordina commented 1 year ago

Example: https://github.com/hasura/ndc-typescript-deno/issues/45

export async function bar() {
  const contents = await fetch('https://www.google.com')
  return contents
}