68 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @module
 | |
|  * @description
 | |
|  * The http module provides services to perform http requests. To get started, see the {@link Http}
 | |
|  * class.
 | |
|  */
 | |
| import {bind, Binding} from 'angular2/di';
 | |
| import {Http} from 'angular2/src/http/http';
 | |
| import {XHRBackend, XHRConnection} from 'angular2/src/http/backends/xhr_backend';
 | |
| import {BrowserXhr} from 'angular2/src/http/backends/browser_xhr';
 | |
| import {BaseRequestOptions, RequestOptions} from 'angular2/src/http/base_request_options';
 | |
| import {ConnectionBackend} from 'angular2/src/http/interfaces';
 | |
| 
 | |
| export {MockConnection, MockBackend} from 'angular2/src/http/backends/mock_backend';
 | |
| export {Request} from 'angular2/src/http/static_request';
 | |
| export {Response} from 'angular2/src/http/static_response';
 | |
| import {BaseResponseOptions, ResponseOptions} from 'angular2/src/http/base_response_options';
 | |
| 
 | |
| export {
 | |
|   IRequestOptions,
 | |
|   IResponseOptions,
 | |
|   Connection,
 | |
|   ConnectionBackend
 | |
| } from 'angular2/src/http/interfaces';
 | |
| 
 | |
| export {BaseRequestOptions, RequestOptions} from 'angular2/src/http/base_request_options';
 | |
| export {BaseResponseOptions, ResponseOptions} from 'angular2/src/http/base_response_options';
 | |
| export {XHRBackend, XHRConnection} from 'angular2/src/http/backends/xhr_backend';
 | |
| export {Http} from 'angular2/src/http/http';
 | |
| 
 | |
| export {Headers} from 'angular2/src/http/headers';
 | |
| 
 | |
| export {
 | |
|   ResponseTypes,
 | |
|   ReadyStates,
 | |
|   RequestMethods,
 | |
|   RequestCredentialsOpts,
 | |
|   RequestCacheOpts,
 | |
|   RequestModesOpts
 | |
| } from 'angular2/src/http/enums';
 | |
| export {URLSearchParams} from 'angular2/src/http/url_search_params';
 | |
| 
 | |
| /**
 | |
|  * Provides a basic set of injectables to use the {@link Http} service in any application.
 | |
|  *
 | |
|  * #Example
 | |
|  *
 | |
|  * ```
 | |
|  * import {httpInjectables, Http} from 'angular2/http';
 | |
|  * @Component({selector: 'http-app', viewInjector: [httpInjectables]})
 | |
|  * @View({template: '{{data}}'})
 | |
|  * class MyApp {
 | |
|  *   constructor(http:Http) {
 | |
|  *     http.request('data.txt').subscribe(res => this.data = res.text());
 | |
|  *   }
 | |
|  * }
 | |
|  * ```
 | |
|  *
 | |
|  */
 | |
| export var httpInjectables: List<any> = [
 | |
|   bind(ConnectionBackend)
 | |
|       .toClass(XHRBackend),
 | |
|   BrowserXhr,
 | |
|   bind(RequestOptions).toClass(BaseRequestOptions),
 | |
|   bind(ResponseOptions).toClass(BaseResponseOptions),
 | |
|   Http
 | |
| ];
 |