Skip to content

Commit a58d56f

Browse files
committed
style: update format for parseRequestBody
1 parent 7af6c35 commit a58d56f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/src/http/pendingRequest/pendingRequestBody.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ export default class PendingRequestBody {
7979
*
8080
* @throws {EmptyRequestBodyException|InvalidRequestBodyFormatException}
8181
*
82-
* @returns {FormData|URLSearchParams|string}
82+
* @returns {string|FormData|URLSearchParams}
8383
*/
84-
public parseRequestBody(): FormData | URLSearchParams | string {
84+
public parseRequestBody(): string | FormData | URLSearchParams {
8585
if (this.body === undefined) {
8686
throw new EmptyRequestBodyException('Request body has no data.');
8787
}

0 commit comments

Comments
 (0)