Skip to main content
Module

x/azure_functions/types.ts

Run Deno 🦕 on Azure Functions ⚡️
Latest
import * as azureFunctions from "https://deno.land/x/azure_functions@v0.9.0/types.ts";

Interfaces

The context object can be used for writing logs, reading data from bindings, setting outputs and using the context.done callback when your exported function is synchronous. A context object is passed to your function from the Azure Functions runtime on function invocation.

Http response cookie object to "Set-Cookie"

HTTP request object. Provided to your function when using HTTP Bindings.

Allows you to write streaming function logs.

TraceContext information to enable distributed tracing scenarios.

Type Aliases

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.

Possible values for an HTTP request method.