Example:
function a(...args: ???type of b() params???) {
b(...args)
}
I want args to be type of b's parameters.
If you want to know why would I want that, then it is for code readability/incapsulation. b is imported function, and I don't care about its implementation at the level of function a declaration