angular-oauth2-oidc-codeflow-pkce
Version:
[](https://travis-ci.org/bechhansen/angular-oauth2-oidc)
11 lines (10 loc) • 366 B
TypeScript
import { HttpParameterCodec } from '@angular/common/http';
/**
* This custom encoder allows charactes like +, % and / to be used in passwords
*/
export declare class WebHttpUrlEncodingCodec implements HttpParameterCodec {
encodeKey(k: string): string;
encodeValue(v: string): string;
decodeKey(k: string): string;
decodeValue(v: string): string;
}