# InferObjectInput

> This document is the Markdown version of [valibot.dev/api/InferObjectInput/](https://valibot.dev/api/InferObjectInput/). For the complete documentation index, see [llms.txt](https://valibot.dev/llms.txt).

Infer object input type.

```ts
// Create object entries
const entries = {
  key: v.pipe(
    v.string(),
    v.transform((input) => input.length)
  ),
};

// Infer entries input type
type EntriesInput = v.InferObjectInput<typeof entries>; // { key: string }
```
