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

This reverts commit 7b7757dd3d.
This commit is contained in:
Matias Niemelä
2018-03-26 14:43:14 -04:00
parent 7b7757dd3d
commit bf6a416bce
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;