interface BackendComponentClient {
    call(functionName, functionArguments?): Promise<BackendComponentResult>;
    destroy(): void;
}

Methods

Methods

  • Parameters

    • functionName: string

      The name of the Custom Backend Component function you want to call

    • Optional functionArguments: {
          [key: string]: any;
      }

      The arguments you want to pass to the Custom Backend Component function

      • [key: string]: any

    Returns Promise<BackendComponentResult>

  • Returns void