I would like to have a namespace be the hub of classes for a strategy in my system. The reason it has to be a namespace is that was the best way to do dynamic class generation, as the window object method proved fruitless.
I would like to re-export this file
// Bar.ts export class Bar { public log() {console.log('I'm in Bar);} } from the following namespace as such
//Foo.ts export namespace Foo { export Bar from './bar.ts' // <- how do I do this? }