revert: docs(common): add HttpParamsOptions to the public API (#20332)
This reverts commit 7b7757dd3d.
This commit is contained in:
+1
-7
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user