<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@firebase/auth](./auth.md) &gt; [Auth](./auth.auth.md) &gt; [onAuthStateChanged](./auth.auth.onauthstatechanged.md)

## Auth.onAuthStateChanged() method

Adds an observer for changes to the user's sign-in state.

<b>Signature:</b>

```typescript
onAuthStateChanged(nextOrObserver: NextOrObserver<User | null>, error?: ErrorFn, completed?: CompleteFn): Unsubscribe;
```

## Parameters

|  Parameter | Type | Description |
|  --- | --- | --- |
|  nextOrObserver | [NextOrObserver](./auth.nextorobserver.md)<!-- -->&lt;[User](./auth.user.md) \| null&gt; | callback triggered on change. |
|  error | ErrorFn | callback triggered on error. |
|  completed | CompleteFn | callback triggered when observer is removed. |

<b>Returns:</b>

Unsubscribe

## Remarks

To keep the old behavior, see [Auth.onIdTokenChanged()](./auth.auth.onidtokenchanged.md)<!-- -->.

