When using typescript `interface` instead of `type`: ``` export interface User { id?: string | undefined; username: string; } ``` the props are shown in the editor's `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 `Outline view` (e.g. VSCode or Eclipse Editor Outline View) Please show the props in the `Ouline view` also for typescript `type`. See https://github.com/eclipse-wildwebdeveloper/wildwebdeveloper/issues/1753#issuecomment-2919335238 for more information.