interface BackendComponentCall {
    functionArguments?: {
        [key: string]: any;
    };
    functionName: string;
}

Properties

functionArguments?: {
    [key: string]: any;
}

Arguments you want to pass to the function

Type declaration

  • [key: string]: any
functionName: string

The name of the function you want to call