ngx-restful-client
Version:
The ultimate Angular library to exquisitely declare and implement the REST APIs you'll use in your application.
13 lines (12 loc) • 517 B
TypeScript
import { HttpClient } from '@angular/common/http';
import { HttpMethod } from '../http-method';
import { HttpOptions, ResponseObserve } from '../../core';
export declare class HttpDelete<T> extends HttpMethod<T> {
protected readonly path: string;
protected readonly http: HttpClient;
private readonly options;
constructor(path: string, http: HttpClient, options?: HttpOptions);
arraybuffer(): ResponseObserve<ArrayBuffer>;
blob(): ResponseObserve<Blob>;
text(): ResponseObserve<string>;
}