Skip to content

Instantly share code, notes, and snippets.

@amrfarid140
Created April 13, 2018 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrfarid140/14c4659ef1fcf79c5cd27548ef992d10 to your computer and use it in GitHub Desktop.
Save amrfarid140/14c4659ef1fcf79c5cd27548ef992d10 to your computer and use it in GitHub Desktop.
HelloWorld TypeScript Function
export const index = (context: any, req: any) => {
context.res = {
body: "Hello World"
}
context.done();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment