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

      This decorator modifies the class to seamlessly enable GCP Cloud Functions as the execution environment for a Stone.js application. By applying this decorator, the class is automatically configured with the necessary blueprint for GCP Cloud 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 GCP Cloud Functions adapter configuration.

      import { GcpCloudFunctions } from '@stone-js/gcp-cloud-functions-adapter';

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