currently the generated TypeScript look something ...
# javascript
j
currently the generated TypeScript look something like this
Copy code
declare namespace blah {
    type Nullable<T> = T | null | undefined
    namespace com.blah {
is there a way to make it export the namespace like this?
Copy code
export declare namespace blah {
    type Nullable<T> = T | null | undefined
    namespace com.blah {
i
j
thank for this! let me star this issue and use the workaround in the meantime