You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the enum extension --enum, the description of enum values is now written as a // comment. It also doesn't handle new lines correctly.
enumErrorCode{// User is not authorizedUnauthorized=100// User has no access to this resourceAccessDenied=200// Something went wrong line 1Thisisline2Thisisline3Unknown=300}
Proposal
The description could be written as jsdoc, improving DX when using the client.
This could also handle new lines correctly.
enumErrorCode{/** User is not authorized */Unauthorized=100/** User has no access to this resource */AccessDenied=200/** * Something went wrong line 1 * This is line 2 * This is line 3 */Unknown=300}
Description
Using the enum extension
--enum
, the description of enum values is now written as a//
comment. It also doesn't handle new lines correctly.Proposal
The description could be written as jsdoc, improving DX when using the client.
This could also handle new lines correctly.
Checklist
If you can give me some instruction on where to start and how to format jsdocs correctly, I could probably make this work.
The text was updated successfully, but these errors were encountered: