2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-08-23 19:34:57 -04:00
|
|
|
export {HttpModule, JsonpModule} from './http';
|
|
|
|
export {BrowserXhr} from './src/backends/browser_xhr';
|
|
|
|
export {JSONPBackend, JSONPConnection} from './src/backends/jsonp_backend';
|
|
|
|
export {CookieXSRFStrategy, XHRBackend, XHRConnection} from './src/backends/xhr_backend';
|
|
|
|
export {BaseRequestOptions, RequestOptions} from './src/base_request_options';
|
|
|
|
export {BaseResponseOptions, ResponseOptions} from './src/base_response_options';
|
|
|
|
export {ReadyState, RequestMethod, ResponseContentType, ResponseType} from './src/enums';
|
|
|
|
export {Headers} from './src/headers';
|
|
|
|
export {Http, Jsonp} from './src/http';
|
|
|
|
export {Connection, ConnectionBackend, RequestOptionsArgs, ResponseOptionsArgs, XSRFStrategy} from './src/interfaces';
|
|
|
|
export {Request} from './src/static_request';
|
|
|
|
export {Response} from './src/static_response';
|
|
|
|
export {QueryEncoder, URLSearchParams} from './src/url_search_params';
|