I have two classes in two files.
//a.ts export class A{} //b.ts export class B{} How I can build file c.ts from which I could import both classes?
import {A, B} from "c"; instead of
import {A} from "a"; import {B} from "b"; I want to make kind of export facade. How to reexport type?