osl-base-extended 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -87,7 +87,7 @@ declare abstract class Httpbase {
|
|
|
87
87
|
private buildParams;
|
|
88
88
|
protected http: HttpClient;
|
|
89
89
|
private baseUrl;
|
|
90
|
-
protected post<T>(methodName: string, body: any): Promise<HttpResponse<T>>;
|
|
90
|
+
protected post<T>(methodName: string, body: any, params?: myParams[]): Promise<HttpResponse<T>>;
|
|
91
91
|
protected get<T>(methodName: string, params?: myParams[]): Promise<HttpResponse<T>>;
|
|
92
92
|
protected put<T>(methodName: string, body: any): Promise<HttpResponse<T>>;
|
|
93
93
|
protected patch<T>(methodName: string, body: any): Promise<HttpResponse<T>>;
|