How to implement a blueprint function calling a c++ variable parameter template function? Or how to define a blueprint node for a c++ variable parameter template function?

template<typename... ParamTypes>
	void TemplateTestFunc(const ECombatTargetType& Type, ParamTypes... Parameters);

As in the above code, the TEmplateTextFunc function can be passed variable parameters, and I want to be able to call it in the blueprint, how should I implement it? Thanks.