I have the following TS code: ```ts export type MyType = { something: number; }; export interface MyInterface { something: number; } ``` Neogen (`:Neogen`) generates this for both of these: ``` /** * [TODO:class] */ ``` I'd expect the property `something` to be documented in each case.
I have the following TS code:
Neogen (
:Neogen) generates this for both of these:I'd expect the property
somethingto be documented in each case.