neogen
neogen copied to clipboard
TypeScript type and interface have poor support
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.