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
{{ message }}
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.
responses:
"204":
description: pet deleted
content:
application/json:
schema:
properties: {}
Will generated a type that looks like
export interface PetDeleteResponse {
;
}
The getObject() function builds an array, joins it with ;\n, and then appends ;. The bug being that the trailing ; gets appended even if the array was empty.
The text was updated successfully, but these errors were encountered:
seanlaff
added a commit
to seanlaff/restful-react
that referenced
this issue
Jan 11, 2020
Will generated a type that looks like
The
getObject()
function builds an array, joins it with;\n
, and then appends;
. The bug being that the trailing;
gets appended even if the array was empty.The text was updated successfully, but these errors were encountered: