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
Add the following JSDoc comments to the example/User.ts file:
example/User.ts
/** The age of the person. */ age: types.number(), /** The first name of the person. */ firstName: types.string({ required: true }),
Then hover over these fields in another file.
VSCode shows the JSDoc comments for only firstName:
firstName
However WebStorm shows the JSDoc comments for both fields.
I guess you can view this as a VSCode bug, but I wonder if there's something in how Papr exposes these fields so that these docs pass through.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add the following JSDoc comments to the
example/User.ts
file:Then hover over these fields in another file.
VSCode shows the JSDoc comments for only
firstName
:However WebStorm shows the JSDoc comments for both fields.
I guess you can view this as a VSCode bug, but I wonder if there's something in how Papr exposes these fields so that these docs pass through.
The text was updated successfully, but these errors were encountered: