bughelp wanted
Repository metrics
- Stars
- (12,328 stars)
- PR merge metrics
- (Avg merge 3d 5h) (11 merged PRs in 30d)
Description
I was trying to use Jsonify with a generic class and noticed things would break if I happened to pass in a type already using JsonValue or JsonObject:
// type Foo = {[x: string]: never}
type Foo = Jsonify<JsonObject>
// Type instantiation is excessively deep and possibly infinite.ts(2589)
type Bar = Jsonify<JsonValue>;