Stone.js API
    Preparing search index...
    • A Stone.js decorator that integrates the Azure Functions Adapter with a class.

      This decorator modifies the class to seamlessly enable Azure Functions as the execution environment for a Stone.js application. By applying this decorator, the class is automatically configured with the necessary blueprint for Azure Functions.

      Type Parameters

      • T extends ClassType = ClassType

        The type of the class being decorated. Defaults to ClassType.

      Parameters

      Returns ClassDecorator

      A class decorator that applies the Azure Functions adapter configuration.

      import { AzureFunctions } from '@stone-js/azure-functions-adapter';

      @AzureFunctions({
      alias: 'MyAzureFunctions',
      })
      class App {
      // Your application logic here
      }