I would like to have in shared module class that I can import in other modules. Something like this:
import { SomeClass } from '/path/to/shared/module'
I want to avoid directly importing class like
import { SomeClass } from '/path/to/class'
Basically I want something like importing from packages in Java or from namespace in c#. I can find only using components, services or directives, from shared modules but no classes. I know I can use barrel files but this seems like better solution for my needs