Created
October 7, 2017 17:22
-
-
Save tkssharma/710cfd293eeea85dcf18b912b48f9390 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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