1 | import { HttpParameterCodec } from '@angular/common/http';
|
2 | /**
|
3 | * This custom encoder allows charactes like +, % and / to be used in passwords
|
4 | */
|
5 | export 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 | }
|