<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@galvanize-inc/jwtdown-for-react](./jwtdown-for-react.md) &gt; [AuthContextType](./jwtdown-for-react.authcontexttype.md)

## AuthContextType type

Object containing the state of AuthContext. This is returned by useAuthContext and is useful to retrieve the token provided by the backend.

**Signature:**

```typescript
export declare type AuthContextType = {
  token: string | null;
  setToken: Dispatch<SetStateAction<string | null>>;
  baseUrl: string;
};
```
