We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
type
When using typescript interface instead of type:
interface
export interface User { id?: string | undefined; username: string; }
the props are shown in the Eclipse outline view.
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.
Eclipse ouline view
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using typescript
interface
instead oftype
:the props are shown in the
Eclipse outline view
.However, when I have a typical typescript
type
:the props are not shown in the
Eclipse outline view
:Please show the props in the
Eclipse ouline view
also for typescript atype
.The text was updated successfully, but these errors were encountered: