* Constructs an observable that, when subscribed, causes the configured * `DELETE` request to execute on the server. See the individual overloads for * details on the return type. * * @param url The endpoint URL. * @param options The HTTP options to send with the request. *
(
url: string,
options: {
observe?: 'body' | 'events' | 'response';
responseType?: 'arraybuffer' | 'blob' | 'json' | 'text';
body?: any | null;
} & HttpClientCommonOptions = {},
)
| 888 | * |
| 889 | */ |
| 890 | delete( |
| 891 | url: string, |
| 892 | options: { |
| 893 | observe?: 'body' | 'events' | 'response'; |
| 894 | responseType?: 'arraybuffer' | 'blob' | 'json' | 'text'; |
| 895 | body?: any | null; |
| 896 | } & HttpClientCommonOptions = {}, |
| 897 | ): Observable<any> { |
| 898 | return this.request<any>('DELETE', url, options as any); |
| 899 | } |
| 900 | |
| 901 | /** |
| 902 | * Constructs a `GET` request that interprets the body as an `ArrayBuffer` and returns the |
no test coverage detected