UNPKG

366 BTypeScriptView Raw
1import { HttpParameterCodec } from '@angular/common/http';
2/**
3 * This custom encoder allows charactes like +, % and / to be used in passwords
4 */
5export declare class WebHttpUrlEncodingCodec implements HttpParameterCodec {
6 encodeKey(k: string): string;
7 encodeValue(v: string): string;
8 decodeKey(k: string): string;
9 decodeValue(v: string): string;
10}