Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eclipse outline view does not show props of typescript type #1753

Open
nimo23 opened this issue Dec 12, 2024 · 0 comments
Open

Eclipse outline view does not show props of typescript type #1753

nimo23 opened this issue Dec 12, 2024 · 0 comments

Comments

@nimo23
Copy link

nimo23 commented Dec 12, 2024

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:

outline-view-types

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant