When using typescript interface instead of type:
export interface User {
id?: string | undefined;
username: string;
}
the props are shown in the Eclipse outline view.
However, when I have a typical typescript type:
export type User = {
id?: string | undefined;
username: string;
}
the props are not shown in the Eclipse outline view:

Please show the props in the Eclipse ouline view also for typescript a type.