@@ -418,22 +418,28 @@ type Serialize<T> =
418
418
419
419
undefined
420
420
421
+ // prettier-ignore
422
+ type ClientData < T > =
423
+ T extends TypedResponse < infer U > ? Jsonify < U > :
424
+ T extends TypedDeferredData < infer U > ? U :
425
+ T
426
+
427
+ // prettier-ignore
428
+ type ServerData < T > =
429
+ T extends TypedResponse < infer U > ? Jsonify < U > :
430
+ T extends TypedDeferredData < infer U > ? Serialize < U > :
431
+ T extends DataWithResponseInit < infer U > ? Serialize < U > :
432
+ Serialize < T >
433
+
421
434
// Backwards-compatible type for Remix v2 where json/defer still use the old types,
422
435
// and only non-json/defer returns use the new types. This allows for incremental
423
436
// migration of loaders to return naked objects. In the next major version,
424
437
// json/defer will be removed so everything will use the new simplified typings.
425
438
// prettier-ignore
426
439
export type SerializeFrom < T > =
427
440
T extends ( ...args : infer Args ) => infer Return ?
428
- Args extends [ ClientLoaderFunctionArgs | ClientActionFunctionArgs ] ?
429
- Awaited < Return > extends TypedResponse < infer U > ? Jsonify < U > :
430
- Awaited < Return > extends TypedDeferredData < infer U > ? U :
431
- Awaited < Return >
432
- :
433
- Awaited < Return > extends TypedResponse < infer U > ? Jsonify < U > :
434
- Awaited < Return > extends TypedDeferredData < infer U > ? Serialize < U > :
435
- Awaited < Return > extends DataWithResponseInit < infer D > ? Serialize < D > :
436
- Serialize < Awaited < ReturnType < T > > >
441
+ Args extends [ ClientLoaderFunctionArgs | ClientActionFunctionArgs ] ? ClientData < Awaited < Return > > :
442
+ ServerData < Awaited < Return > >
437
443
:
438
444
T
439
445
@@ -607,5 +613,18 @@ type _tests = [
607
613
Expect < Equal < Pretty < SerializeFrom < ServerLoader < TypedDeferredData < { a : string , b : Promise < Date > } > > > > , { a : string , b : Promise < Date > } > > ,
608
614
609
615
// non-function backcompat
610
- Expect < Equal < SerializeFrom < { a : string , b : Date } > , { a : string , b : Date } > >
616
+ Expect < Equal < SerializeFrom < { a : string , b : Date } > , { a : string , b : Date } > > ,
617
+
618
+ Expect < Equal <
619
+ SerializeFrom < ServerLoader <
620
+ | { a : string ; b : Date }
621
+ | TypedResponse < { c : string ; d : Date } >
622
+ | TypedDeferredData < { e : string ; f : Promise < Date > } >
623
+ | DataWithResponseInit < { g : string ; h : Date } >
624
+ > > ,
625
+ | { a : string ; b : Date }
626
+ | Jsonify < { c : string ; d : Date } >
627
+ | { e : string ; f : Promise < Date > }
628
+ | { g : string ; h : Date }
629
+ > > ,
611
630
]
0 commit comments