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 = {
4040 * Implements an OAuth server that proxies requests to another OAuth server.
4141 */
4242export 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 > ;
4646
47- public revokeToken ?: (
47+ revokeToken ?: (
4848 client : OAuthClientInformationFull ,
4949 request : OAuthTokenRevocationRequest
5050 ) => Promise < void > ;
You can’t perform that action at this time.
0 commit comments