We currently have a module which contains a bunch of types and one exported class.
This module is pulled into the main entrypoint (src/main.ts).
is there a way to essentially export type * as someNameSpace from './submod.js?
currently, even 5.x versions of typescript give some of our consumers this error:
error TS1383: Only named exports may use 'export type'.
i can't really work around it by some kind of namespace either since you can't export types in namespaces it seems (export namespace Foo { export type {A, B, C} from './submod.js'; })