Skip to main content
Module

x/azure_functions/types.ts>AzureFunction

Run Deno 🦕 on Azure Functions ⚡️
Latest
type alias AzureFunction
import { type AzureFunction } from "https://deno.land/x/azure_functions@v0.9.0/types.ts";

Interface for your Azure Function code. This function must be exported (via module.exports or exports) and will execute when triggered. It is recommended that you declare this function as async, which implicitly returns a Promise.

definition: ((context: Context, ...args: any[]) => Promise<any> | void | any)