Is it possible to import and reference a module (a collection of functions) in typescript without the need for the Module.
prefix?
For instance:
import * as Operations from './Operations';
Can I access Operations.example()
simply as example()
? Essentially combining the 'namespace'?