Revert "docs(common): add HttpParamsOptions to the public API (#20332)"

This reverts commit a9545aba4d.
This commit is contained in:
Miško Hevery
2018-02-08 14:37:27 -08:00
parent dcf64a0d01
commit 0b1f5d2127
3 changed files with 20 additions and 23 deletions

View File

@ -1580,13 +1580,7 @@ export interface HttpParameterCodec {
/** @stable */
export declare class HttpParams {
constructor(options?: {
fromString?: string | undefined;
fromObject?: {
[param: string]: string | string[];
} | undefined;
encoder?: HttpParameterCodec | undefined;
});
constructor(options?: HttpParamsOptions);
append(param: string, value: string): HttpParams;
delete(param: string, value?: string): HttpParams;
get(param: string): string | null;