Skip to content

Commit f24821b

Browse files
authoredOct 19, 2022
Fix Jsonify with empty Set and Map (#497)
1 parent 3ae74fd commit f24821b

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed
 

‎source/jsonify.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type {JsonPrimitive, JsonValue} from './basic';
2+
import type {EmptyObject} from './empty-object';
23
import type {Merge} from './merge';
34
import type {NegativeInfinity, PositiveInfinity} from './numeric';
45
import type {TypedArray} from './typed-array';
@@ -100,7 +101,7 @@ export type Jsonify<T> =
100101
: T extends Number ? number
101102
: T extends String ? string
102103
: T extends Boolean ? boolean
103-
: T extends Map<any, any> | Set<any> ? {}
104+
: T extends Map<any, any> | Set<any> ? EmptyObject
104105
: T extends TypedArray ? Record<string, number>
105106
: T extends any[]
106107
? {[I in keyof T]: T[I] extends NotJsonable ? null : Jsonify<T[I]>}

‎test-d/jsonify.ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/consistent-type-definitions */
22
// TODO: Convert the `interface`'s to `type`s.
33
import {expectAssignable, expectNotAssignable, expectType} from 'tsd';
4-
import type {Jsonify, JsonValue, NegativeInfinity, PositiveInfinity} from '..';
4+
import type {EmptyObject, Jsonify, JsonValue, NegativeInfinity, PositiveInfinity} from '..';
55

66
interface A {
77
a: number;
@@ -205,11 +205,21 @@ expectType<Record<string, number>>(int8ArrayJson);
205205

206206
declare const map: Map<string, number>;
207207
declare const mapJson: Jsonify<typeof map>;
208-
expectType<{}>(mapJson);
208+
expectType<EmptyObject>(mapJson);
209+
expectAssignable<Jsonify<typeof map>>({});
210+
211+
// Regression test for https://github.com/sindresorhus/type-fest/issues/466
212+
expectNotAssignable<Jsonify<typeof map>>(42);
213+
expectNotAssignable<Jsonify<typeof map>>({foo: 42});
209214

210215
declare const set: Set<string>;
211216
declare const setJson: Jsonify<typeof set>;
212-
expectType<{}>(setJson);
217+
expectType<EmptyObject>(setJson);
218+
expectAssignable<Jsonify<typeof set>>({});
219+
220+
// Regression test for https://github.com/sindresorhus/type-fest/issues/466
221+
expectNotAssignable<Jsonify<typeof set>>(42);
222+
expectNotAssignable<Jsonify<typeof set>>({foo: 42});
213223

214224
// Positive and negative Infinity, NaN and null are turned into null
215225
// NOTE: NaN is not detectable in TypeScript, so it is not tested; see https://github.com/sindresorhus/type-fest/issues/406

0 commit comments

Comments
 (0)
Please sign in to comment.