Lets say I have 2 classes, A and B, implemented in 2 different files: A.ts and B.ts (both exporting just the class instance implemented in them).
I would like to export them both in a third file C.ts:
import A from "./A";
import B from "./B";
export module mymodule {
export A;
export B;
}
Unfortunately the above doesn't compile..