File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11export interface AuthConfiguration extends BaseAuthConfiguration {
22 scopes : string [ ] ;
33 redirectUrl : string ;
4- aditionalParameters ?: { [ name : string ] : any } ;
4+ aditionalParameters ?: { [ name : string ] : string } ;
55 }
66
77 export interface BaseAuthConfiguration {
@@ -17,7 +17,7 @@ export interface AuthConfiguration extends BaseAuthConfiguration {
1717 export interface AuthorizeResult {
1818 accessToken : string ;
1919 accessTokenExpirationDate : string ;
20- aditionalParameters ?: { [ name : string ] : any } ;
20+ aditionalParameters ?: { [ name : string ] : string } ;
2121 idToken : string ;
2222 refreshToken : string ;
2323 tokenType : string ;
@@ -36,4 +36,4 @@ export interface AuthConfiguration extends BaseAuthConfiguration {
3636
3737 export function refresh ( config : AuthConfiguration , refreshConfig : RefreshConfiguration ) : Promise < AuthorizeResult > ;
3838
39- export function revoke ( config : BaseAuthConfiguration , refreshConfig : RevokeConfiguration ) : Promise < void > ;
39+ export function revoke ( config : BaseAuthConfiguration , revokeConfig : RevokeConfiguration ) : Promise < void > ;
You can’t perform that action at this time.
0 commit comments