angular-oauth2-oidc-codeflow-pkce
Version:
[](https://travis-ci.org/bechhansen/angular-oauth2-oidc)
9 lines (8 loc) • 383 B
TypeScript
import { HttpResponse } from '@angular/common/http';
import { Observable } from 'rxjs';
export declare abstract class OAuthResourceServerErrorHandler {
abstract handleError(err: HttpResponse<any>): Observable<any>;
}
export declare class OAuthNoopResourceServerErrorHandler implements OAuthResourceServerErrorHandler {
handleError(err: HttpResponse<any>): Observable<any>;
}