UNPKG

ngx-restful-client

Version:

The ultimate Angular library to exquisitely declare and implement the REST APIs you'll use in your application.

9 lines (8 loc) 531 B
import { HttpOptions, QueryParamsSupplier, ResponseObserve } from '../core'; export interface HttpPivotResponse<T> { get(options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>; put(body?: any, options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>; post(body?: any, options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>; patch(body?: any, options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>; delete(options?: HttpOptions | QueryParamsSupplier): ResponseObserve<T>; }