---
title: ContextEntry
---

# ContextEntry

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

## Summary

A single request-context entry that associates a context key with its stored value type.

## Signature

```ts
type ContextEntry<key, value> = readonly [key, value];

```