UNPKG

1.11 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google Inc. All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8export { BrowserXhr } from './backends/browser_xhr';
9export { JSONPBackend, JSONPConnection } from './backends/jsonp_backend';
10export { CookieXSRFStrategy, XHRBackend, XHRConnection } from './backends/xhr_backend';
11export { BaseRequestOptions, RequestOptions } from './base_request_options';
12export { BaseResponseOptions, ResponseOptions } from './base_response_options';
13export { ReadyState, RequestMethod, ResponseContentType, ResponseType } from './enums';
14export { Headers } from './headers';
15export { Http, Jsonp } from './http';
16export { HttpModule, JsonpModule } from './http_module';
17export { Connection, ConnectionBackend, RequestOptionsArgs, ResponseOptionsArgs, XSRFStrategy } from './interfaces';
18export { Request } from './static_request';
19export { Response } from './static_response';
20export { QueryEncoder, URLSearchParams } from './url_search_params';
21export { VERSION } from './version';