coer-elements 0.0.32 → 0.0.33
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.
@@ -25,15 +25,15 @@ export declare class Service {
|
|
25
25
|
/** */
|
26
26
|
private ReleaseSubscription;
|
27
27
|
/** HTTP GET */
|
28
|
-
protected HTTP_GET<T>(request: IHttpRequest<T
|
28
|
+
protected HTTP_GET<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<T>>;
|
29
29
|
/** HTTP POST */
|
30
|
-
protected HTTP_POST<T>(request: IHttpRequest<T
|
30
|
+
protected HTTP_POST<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<T>>;
|
31
31
|
/** HTTP PUT */
|
32
|
-
protected HTTP_PUT<T>(request: IHttpRequest<T
|
32
|
+
protected HTTP_PUT<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<void>>;
|
33
33
|
/** HTTP PATCH */
|
34
|
-
protected HTTP_PATCH<T>(request: IHttpRequest<T
|
34
|
+
protected HTTP_PATCH<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<void>>;
|
35
35
|
/** HTTP DELETE */
|
36
|
-
protected HTTP_DELETE<T>(request: IHttpRequest<T
|
36
|
+
protected HTTP_DELETE<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<void>>;
|
37
37
|
/** */
|
38
38
|
private AlertError;
|
39
39
|
}
|