interface BackendComponentClient {
    call(functionName: string, functionArguments?: {
        [key: string]: any;
    }): Promise<BackendComponentResult>;
    destroy(): void;
}

Methods

Methods

  • Parameters

    • functionName: string

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

    • OptionalfunctionArguments: {
          [key: string]: any;
      }

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

      • [key: string]: any

    Returns Promise<BackendComponentResult>

  • Returns void