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
I'm not entirely sure if this is possible, but could decorators be used for providing more information? For example:
exportdefaultclassAuthLoginController{
@ApiInfo('Login to the application')
@ApiRequest<InputShape>()
@ApiResponse<OutputShape>(200)asynchandle({ auth, request, response }: HttpContext){// Do something}}
Adds a bit more type safety and control than JSDoc tags.
The text was updated successfully, but these errors were encountered:
I'm not entirely sure if this is possible, but could decorators be used for providing more information? For example:
Adds a bit more type safety and control than JSDoc tags.
The text was updated successfully, but these errors were encountered: