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

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

      Type Parameters

      • T extends ClassType = ClassType

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

      Parameters

      • options: AlibabaFcOptions = {}

        Optional configuration to customize the Alibaba FC Adapter.

      Returns ClassDecorator

      A class decorator that applies the Alibaba FC adapter configuration.

      import { AlibabaFc } from '@stone-js/alibaba-fc-adapter';

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