A good reference: typescript-function-with-additional-arguments
I don't think it is possible to extend a function interface to add an argument, as you intent to do.
You can do it using types declarations, but probably not the way you need. You can easily add arguments before arguments list of original function, but I'm not sure how to do that at the end.