From 1c13a159042ade00c453dfba8f8ffb4ca07a6d54 Mon Sep 17 00:00:00 2001 From: Brock Allen Date: Fri, 19 Jul 2019 19:00:38 -0400 Subject: [PATCH] update typings --- index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.d.ts b/index.d.ts index b11e5e89..c8248223 100644 --- a/index.d.ts +++ b/index.d.ts @@ -173,6 +173,9 @@ export class UserManager extends OidcClient { signoutPopupCallback(url?: string, keepOpen?: boolean): Promise; signoutPopupCallback(keepOpen?: boolean): Promise; + signinCallback(url?: string): Promise; + signoutCallback(url?: string): Promise; + querySessionStatus(args?: any): Promise; revokeAccessToken(): Promise; @@ -210,6 +213,7 @@ export interface UserManagerSettings extends OidcClientSettings { readonly silent_redirect_uri?: any; readonly silentRequestTimeout?: any; readonly automaticSilentRenew?: boolean; + readonly validateSubOnSilentRenew?: boolean; readonly includeIdTokenInSilentRenew?: boolean; readonly monitorSession?: boolean; readonly checkSessionInterval?: number;