I have the following directory structure,
some-process/
index.ts
where index.ts looks something like this:
class SomeProcess {}
namespace SomeProcess {
export class Output {}
}
export default SomeProcess;
I would like to factor out Output into its own file with index.ts; output.ts. However, I can't figure out how to do that while maintaining the import/access signature (import SomeProcess from "@app/some-process" and SomeProcess.Output, respectively)
is this possible?