Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created October 7, 2017 17:22
Show Gist options
  • Save tkssharma/710cfd293eeea85dcf18b912b48f9390 to your computer and use it in GitHub Desktop.
Save tkssharma/710cfd293eeea85dcf18b912b48f9390 to your computer and use it in GitHub Desktop.
request(url: string | Request, options?: RequestOptionsArgs): Observable<Response>;
/**
* Performs a request with `get` http method.
*/
get(url: string, options?: RequestOptionsArgs): Observable<Response>;
/**
* Performs a request with `post` http method.
*/
post(url: string, body: any, options?: RequestOptionsArgs): Observable<Response>;
/**
* Performs a request with `put` http method.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment