|
1 | 1 | /* eslint-disable @typescript-eslint/consistent-type-definitions */
|
2 | 2 | // TODO: Convert the `interface`'s to `type`s.
|
3 | 3 | import {expectAssignable, expectNotAssignable, expectType} from 'tsd';
|
4 |
| -import type {Jsonify, JsonValue, NegativeInfinity, PositiveInfinity} from '..'; |
| 4 | +import type {EmptyObject, Jsonify, JsonValue, NegativeInfinity, PositiveInfinity} from '..'; |
5 | 5 |
|
6 | 6 | interface A {
|
7 | 7 | a: number;
|
@@ -205,11 +205,21 @@ expectType<Record<string, number>>(int8ArrayJson);
|
205 | 205 |
|
206 | 206 | declare const map: Map<string, number>;
|
207 | 207 | 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}); |
209 | 214 |
|
210 | 215 | declare const set: Set<string>;
|
211 | 216 | 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}); |
213 | 223 |
|
214 | 224 | // Positive and negative Infinity, NaN and null are turned into null
|
215 | 225 | // NOTE: NaN is not detectable in TypeScript, so it is not tested; see https://github.com/sindresorhus/type-fest/issues/406
|
|
0 commit comments