JSON request body. If the `content-type` header is not set, it will be set to `application/json`. __Important__: This option only affects the request body you send to the server. To parse the response as JSON, you must either call `.json()` on the promise or set `responseType: 'json'` in the optio
()
| 1946 | __Note #2__: This option is not enumerable and will not be merged with the instance defaults. |
| 1947 | */ |
| 1948 | get json(): unknown { |
| 1949 | return this.#internals.json; |
| 1950 | } |
| 1951 | |
| 1952 | set json(value: unknown) { |
| 1953 | if (value !== undefined) { |
no test coverage detected