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 eb045bf commit 7ed8798Copy full SHA for 7ed8798
source/core/options.ts
@@ -1349,11 +1349,11 @@ export default class Options {
1349
1350
__Note #2__: This option is not enumerable and will not be merged with the instance defaults.
1351
*/
1352
- get json(): any {
+ get json(): unknown {
1353
return this._internals.json;
1354
}
1355
1356
- set json(value: any) {
+ set json(value: unknown) {
1357
if (value !== undefined) {
1358
assert.undefined(this._internals.body);
1359
assert.undefined(this._internals.form);
0 commit comments