When we import all types from a module using a custom-namespace, it appears to work smoothly, for example:
import * as MyCustomNamespace from './my-sub-module'
We are also able to export all types from a module without creating a new namespace, like this:
export * from './my-sub-module'
But how can we Export all types of a sub-module into a new custom-namespace?
What I mean is, why doesn't the following code snippet work:
export * as MyCustomNamespace from './my-sub-module'