@squidcloud/backend
    Preparing search index...

    Function executable

    • Decorator marking a function as executable, making it accessible via the Squid SDK.

      Functions decorated with @executable:

      • May accept and return parameters serializable to JSON.
      • Automatically handle files or arrays of files from the client, receiving them as SquidFile objects.

      Once exposed, the decorated function can be executed using Squid's executeFunction method.

      For detailed guidance on executable functions, see: documentation

      Returns ActionMethodDecorator<ExecutableAction>