@shad-claiborne/basic-oidc 1.1.3 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -268,9 +268,9 @@ export declare class Client {
|
|
|
268
268
|
/**
|
|
269
269
|
* refreshAccess
|
|
270
270
|
* @param tokenSet TokenSet
|
|
271
|
-
* @returns Promise<
|
|
271
|
+
* @returns Promise<TokenResponse>
|
|
272
272
|
*/
|
|
273
|
-
refreshAccess(tokenSet: TokenSet): Promise<
|
|
273
|
+
refreshAccess(tokenSet: TokenSet): Promise<TokenResponse>;
|
|
274
274
|
/**
|
|
275
275
|
* revokeAccess
|
|
276
276
|
* @param tokenSet TokenSet
|
package/dist/index.js
CHANGED