We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f6d8e2 commit 2a043d6Copy full SHA for 2a043d6
oidc-client.d.ts
@@ -135,6 +135,7 @@ declare namespace Oidc {
135
136
signoutRedirect(args?: any): Promise<any>;
137
signoutRedirectCallback(url?: string): Promise<any>;
138
+ signoutPopup(args?: any): Promise<any>;
139
140
querySessionStatus(args?: any): Promise<any>;
141
@@ -168,7 +169,15 @@ declare namespace Oidc {
168
169
iframeNavigator?: any;
170
userStore?: any;
171
}
- interface WebStorageStateStore {
172
+
173
+ interface WebStorageStateStoreSettings {
174
+ prefix?: string;
175
+ store?: any;
176
+ }
177
178
+ class WebStorageStateStore {
179
+ constructor(settings: WebStorageStateStoreSettings);
180
181
set(key: string, value: any): Promise<void>;
182
183
get(key: string): Promise<any>;
0 commit comments