Skip to content

Commit 7ed8798

Browse files
committed
Minor tweak
1 parent eb045bf commit 7ed8798

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/core/options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1349,11 +1349,11 @@ export default class Options {
13491349
13501350
__Note #2__: This option is not enumerable and will not be merged with the instance defaults.
13511351
*/
1352-
get json(): any {
1352+
get json(): unknown {
13531353
return this._internals.json;
13541354
}
13551355

1356-
set json(value: any) {
1356+
set json(value: unknown) {
13571357
if (value !== undefined) {
13581358
assert.undefined(this._internals.body);
13591359
assert.undefined(this._internals.form);

0 commit comments

Comments
 (0)