Is there a way I can import a module(?) (a set of functions) in typescript and be able to refer to these functions without the Module. prefix?
For example:
import * as Operations from './Operations';
Can I reference Operations.example() as example()? Essentially merging the 'namespace'?
./Operations? can you please show howOperationsis? does it have a default export?Operationsfile in any way. But essentially I want to define a set of functions that can be imported anywhere.