Skip to main content
Module

x/azure_functions/types.ts>BindingDefinition

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

Properties

name: string

The name of your binding, as defined in function.json.

type: string

The type of your binding, as defined in function.json.

direction:
| "in"
| "out"
| "inout"
| undefined

The direction of your binding, as defined in function.json.