We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7af6c35 commit a58d56fCopy full SHA for a58d56f
code/src/http/pendingRequest/pendingRequestBody.ts
@@ -79,9 +79,9 @@ export default class PendingRequestBody {
79
*
80
* @throws {EmptyRequestBodyException|InvalidRequestBodyFormatException}
81
82
- * @returns {FormData|URLSearchParams|string}
+ * @returns {string|FormData|URLSearchParams}
83
*/
84
- public parseRequestBody(): FormData | URLSearchParams | string {
+ public parseRequestBody(): string | FormData | URLSearchParams {
85
if (this.body === undefined) {
86
throw new EmptyRequestBodyException('Request body has no data.');
87
}
0 commit comments