Skip to content

Commit

Permalink
Merge pull request IdentityModel#1189 from Daniel-Khodabakhsh/fix-Use…
Browse files Browse the repository at this point in the history
…rManager.signoutCallback-typing

Fix UserManager.signoutCallback typing
  • Loading branch information
brockallen authored Jan 16, 2021
2 parents 4f46fcb + e48c968 commit 058ab22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/oidc-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class UserManager extends OidcClient {
signinCallback(url?: string): Promise<User>;

/** Proxy to Popup and Redirect callbacks */
signoutCallback(url?: string, keepWindowOpen?: boolean): Promise<SignoutResponse | void>;
signoutCallback(url?: string, keepWindowOpen?: boolean): Promise<SignoutResponse | undefined>;

/** Query OP for user's current signin status */
querySessionStatus(args?: any): Promise<SessionStatus>;
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class UserManager extends OidcClient {
signinCallback(url?: string): Promise<User>;

/** Proxy to Popup and Redirect callbacks */
signoutCallback(url?: string, keepWindowOpen?: boolean): Promise<SignoutResponse | void>;
signoutCallback(url?: string, keepWindowOpen?: boolean): Promise<SignoutResponse | undefined>;

/** Query OP for user's current signin status */
querySessionStatus(args?: any): Promise<SessionStatus>;
Expand Down

0 comments on commit 058ab22

Please sign in to comment.