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 1
1
export interface AuthConfiguration extends BaseAuthConfiguration {
2
2
scopes : string [ ] ;
3
3
redirectUrl : string ;
4
- aditionalParameters ?: { [ name : string ] : any } ;
4
+ aditionalParameters ?: { [ name : string ] : string } ;
5
5
}
6
6
7
7
export interface BaseAuthConfiguration {
@@ -17,7 +17,7 @@ export interface AuthConfiguration extends BaseAuthConfiguration {
17
17
export interface AuthorizeResult {
18
18
accessToken : string ;
19
19
accessTokenExpirationDate : string ;
20
- aditionalParameters ?: { [ name : string ] : any } ;
20
+ aditionalParameters ?: { [ name : string ] : string } ;
21
21
idToken : string ;
22
22
refreshToken : string ;
23
23
tokenType : string ;
@@ -36,4 +36,4 @@ export interface AuthConfiguration extends BaseAuthConfiguration {
36
36
37
37
export function refresh ( config : AuthConfiguration , refreshConfig : RefreshConfiguration ) : Promise < AuthorizeResult > ;
38
38
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