Skip to content

Commit

Permalink
Remove impl usage
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Dec 12, 2023
1 parent 9a0c480 commit 6ec8736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/remix-server-runtime/serialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export type SerializeFrom<T> = (
* For example:
* `type LoaderData = SerializeFrom<typeof loader>`
*/
export type SerializeFromImpl<T> =
type SerializeFromImpl<T> =
T extends (...args: any[]) => infer Output ? Serialize<Awaited<Output>> :
// Back compat: manually defined data type, not inferred from loader nor action
Jsonify<Awaited<T>>
Expand Down

0 comments on commit 6ec8736

Please sign in to comment.