---
title: SerializableProps
---

# SerializableProps

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/ui/src/runtime/client-entries.ts#L33" target="_blank">View Source</a>

## Summary

Constraint that ensures all properties in an object are serializable.

## Signature

```ts
type SerializableProps = { [K in string]: SerializableValue };

```