I have some functions in a module and I want to override it in another module and export them.
I want to achieve this:
import * as functions from 'path/to/module' functions.test = function () { // } export {...functions} // this line is invalid