* 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 = {},
)
| 896 | * |
| 897 | */ |
| 898 | delete( |
| 899 | url: string, |
| 900 | options: { |
| 901 | observe?: 'body' | 'events' | 'response'; |
| 902 | responseType?: 'arraybuffer' | 'blob' | 'json' | 'text'; |
| 903 | body?: any | null; |
| 904 | } & HttpClientCommonOptions = {}, |
| 905 | ): Observable<any> { |
| 906 | return this.request<any>('DELETE', url, options as any); |
| 907 | } |
| 908 | |
| 909 | /** |
| 910 | * Constructs a `GET` request that interprets the body as an `ArrayBuffer` and returns the |
no test coverage detected