Skip to content

Commit e11d30b

Browse files
authoredOct 19, 2022
Fix Jsonify to look deeper (#498)
1 parent f24821b commit e11d30b

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
 

‎source/jsonify.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export type Jsonify<T> =
9696
// Any object with toJSON is special case
9797
? T extends {toJSON(): infer J} ? (() => J) extends (() => JsonValue) // Is J assignable to JsonValue?
9898
? J // Then T is Jsonable and its Jsonable value is J
99-
: never // Not Jsonable because its toJSON() method does not return JsonValue
99+
: Jsonify<J> // Maybe if we look a level deeper we'll find a JsonValue
100100
// Instanced primitives are objects
101101
: T extends Number ? number
102102
: T extends String ? string

‎test-d/jsonify.ts

+26
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,37 @@ class NonJsonWithToJSON {
105105
};
106106
}
107107
}
108+
108109
const nonJsonWithToJSON = new NonJsonWithToJSON();
109110
expectNotAssignable<JsonValue>(nonJsonWithToJSON);
110111
expectAssignable<JsonValue>(nonJsonWithToJSON.toJSON());
111112
expectAssignable<Jsonify<NonJsonWithToJSON>>(nonJsonWithToJSON.toJSON());
112113

114+
class NonJsonWithToJSONWrapper {
115+
public inner: NonJsonWithToJSON = nonJsonWithToJSON;
116+
public override = 42;
117+
118+
public toJSON() {
119+
const stringOverride = 'override';
120+
121+
return {
122+
override: stringOverride,
123+
inner: this.inner,
124+
innerDeep: {inner: this.inner},
125+
};
126+
}
127+
}
128+
129+
expectNotAssignable<JsonValue>(new NonJsonWithToJSONWrapper());
130+
131+
type InnerFixture = {fixture: Array<[string, number]>};
132+
133+
expectType<{
134+
override: string;
135+
inner: InnerFixture;
136+
innerDeep: {inner: InnerFixture};
137+
}>({} as Jsonify<NonJsonWithToJSONWrapper>);
138+
113139
class NonJsonWithInvalidToJSON {
114140
public fixture = new Map<string, number>([['a', 1], ['b', 2]]);
115141

0 commit comments

Comments
 (0)
Please sign in to comment.