I currently have two separate classes defined in two different files.
//a.ts
export class A{}
//b.ts
export class B{}
My goal is to create a new file c.ts
where I can import both classes seamlessly.
import {A, B} from "c";
Instead of having to import them individually like this:
import {A} from "a";
import {B} from "b";
I'm looking to create a sort of export facade. How can I achieve this reexporting of types?