coer-elements 0.0.32 → 0.0.33
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
}
|