* Add callback: Raised when the user's sign-in status at the OP has changed (when `monitorSession` is set). * @see UserManagerSettings.monitorSession
(cb: UserSignedOutCallback)
| 130 | * @see {@link UserManagerSettings.monitorSession} |
| 131 | */ |
| 132 | public addUserSignedOut(cb: UserSignedOutCallback): () => void { |
| 133 | return this._userSignedOut.addHandler(cb); |
| 134 | } |
| 135 | /** |
| 136 | * Remove callback: Raised when the user's sign-in status at the OP has changed (when `monitorSession` is set). |
| 137 | */ |
no test coverage detected