File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ export type ProxyOptions = {
40
40
* Implements an OAuth server that proxies requests to another OAuth server.
41
41
*/
42
42
export class ProxyOAuthServerProvider implements OAuthServerProvider {
43
- private readonly _endpoints : ProxyEndpoints ;
44
- private readonly _verifyAccessToken : ( token : string ) => Promise < AuthInfo > ;
45
- private readonly _getClient : ( clientId : string ) => Promise < OAuthClientInformationFull | undefined > ;
43
+ protected readonly _endpoints : ProxyEndpoints ;
44
+ protected readonly _verifyAccessToken : ( token : string ) => Promise < AuthInfo > ;
45
+ protected readonly _getClient : ( clientId : string ) => Promise < OAuthClientInformationFull | undefined > ;
46
46
47
- public revokeToken ?: (
47
+ revokeToken ?: (
48
48
client : OAuthClientInformationFull ,
49
49
request : OAuthTokenRevocationRequest
50
50
) => Promise < void > ;
You can’t perform that action at this time.
0 commit comments