neogen icon indicating copy to clipboard operation
neogen copied to clipboard

TypeScript type and interface have poor support

Open marcinjahn opened this issue 10 months ago • 0 comments

I have the following TS code:

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.

marcinjahn avatar Mar 12 '25 07:03 marcinjahn