UNPKG

angular-oauth2-oidc-codeflow-pkce

Version:

[![Build Status](https://travis-ci.org/bechhansen/angular-oauth2-oidc.svg?branch=master)](https://travis-ci.org/bechhansen/angular-oauth2-oidc)

13 lines (12 loc) 451 B
export declare abstract class OAuthModuleConfig { resourceServer: OAuthResourceServerConfig; } export declare abstract class OAuthResourceServerConfig { /** * Urls for which calls should be intercepted. * If there is an ResourceServerErrorHandler registered, it is used for them. * If sendAccessToken is set to true, the access_token is send to them too. */ allowedUrls?: Array<string>; sendAccessToken: boolean; }