Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
fix: improve description for UserSignedIn and UserSignedOut
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Ammann committed May 11, 2021
1 parent fa8f78c commit 50f3b1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,11 @@ export interface UserManagerEvents extends AccessTokenEvents {
addSilentRenewError(callback: UserManagerEvents.SilentRenewErrorCallback): void;
removeSilentRenewError(callback: UserManagerEvents.SilentRenewErrorCallback): void;

/** Subscribe to events raised when the user's signed-in */
/** When `monitorSession` subscribe to events raised when the user's signed-in */
addUserSignedIn(callback: UserManagerEvents.UserSignedInCallback): void;
removeUserSignedIn(callback: UserManagerEvents.UserSignedInCallback): void;

/** Subscribe to events raised when the user's sign-in status at the OP has changed */
/** When `monitorSession` subscribe to events raised when the user's sign-in status at the OP has changed */
addUserSignedOut(callback: UserManagerEvents.UserSignedOutCallback): void;
removeUserSignedOut(callback: UserManagerEvents.UserSignedOutCallback): void;

Expand Down

0 comments on commit 50f3b1a

Please sign in to comment.