---
title: AnyParams
---

# AnyParams

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/fetch-router/src/lib/request-context.ts#L29" target="_blank">View Source</a>

## Summary

A broad params shape for APIs that cannot know an exact route pattern ahead of time.

## Signature

```ts
type AnyParams = Record<string, string>;

```