# TypingContext

The `TypingContext` is established by the `Channel` component and exposes the `useTypingContext` hook. The stored value is an
object of users currently typing in a single channel, with key as the user ID and value as the user details object.

## Basic Usage

Pull the value from context with our custom hook:

```jsx
const { typing } = useTypingContext();
```

## Value

### typing

The users currently typing in a single channel, with key as the user ID and value as the user details object.

| Type   |
| ------ |
| object |


---

This page was last updated at 2026-05-22T16:32:10.958Z.

For the most recent version of this documentation, visit [https://getstream.io/chat/docs/sdk/react/v11/components/contexts/typing-context/](https://getstream.io/chat/docs/sdk/react/v11/components/contexts/typing-context/).