Alias for method/function name

Suppose I have a method or function that takes several arguments. It’s already in use, but now I think of a better name for it. I’d like to have an alias for it, but I don’t want the maintenance hassle of passing all the arguments through a wrapper (and the risk of forgetting to change the wrapper if the original interface is modified). Is there a simple way to declare an alias for it without having to explicitly handle the arguments? Thanks.

Maybe export from Dotty?