There are multiple interfaces in my typescript file which I need to export. Something like:
interface A {
...
}
interface B {
...
}
Then in another file I need to use
const var : A
I have searched and tried multiple things, but till not only export default works for me. But export default only works for one interface. I can't export multiple. Is there a workaround for this?