The issue is similar to https://github.com/oxc-project/oxc/issues/5928. While comments for interface fields work fine, they cut out for type fields. This code: ```typescript export type MyType = { /** * My comment. */ field: string } ``` Transforms to: ```typescript export declare type MyType = { field: string }; ```
The issue is similar to #5928.
While comments for interface fields work fine, they cut out for type fields.
This code:
Transforms to: