Stone.js API
    Preparing search index...
    • StoneApp decorator to mark a class as the main application entry point.

      This decorator is useful for customizing classes that should be treated as the primary entry point for the Stone.js framework. It allows for configuring the main application settings via the provided options.

      Type Parameters

      Parameters

      Returns ClassDecorator

      A decorator function to set metadata on the target class.

      @StoneApp({ name: 'MyApplication', env: Environment.Development })
      class MyApp {
      // Application logic here.
      }