@yuuvis/client-core 2.3.7 → 2.3.8
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.
|
@@ -46,10 +46,10 @@ export declare class BackendService {
|
|
|
46
46
|
* @param uri The target REST URI
|
|
47
47
|
* @param formData FormData to be 'posted'
|
|
48
48
|
* @param base The Base URI (backend service) to be used
|
|
49
|
-
* @param requestOptions Additional request options
|
|
49
|
+
* @param requestOptions Additional request options (see HttpRequest for details)
|
|
50
50
|
* @returns The return value of the target POST endpoint
|
|
51
51
|
*/
|
|
52
|
-
postMultiPart(uri: string, formData: FormData, base?: string, requestOptions?:
|
|
52
|
+
postMultiPart(uri: string, formData: FormData, base?: string, requestOptions?: any): Observable<any>;
|
|
53
53
|
/**
|
|
54
54
|
* Wrapped HTTP PATCH method
|
|
55
55
|
* @param uri The target REST URI
|