@angular/http
Version:
Angular - the http service
41 lines • 977 B
JavaScript
/**
* @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
*/
/**
* Abstract class from which real backends are derived.
*
* The primary purpose of a `ConnectionBackend` is to create new connections to fulfill a given
* {@link Request}.
*
* @experimental
*/
export var ConnectionBackend = (function () {
function ConnectionBackend() {
}
return ConnectionBackend;
}());
/**
* Abstract class from which real connections are derived.
*
* @experimental
*/
export var Connection = (function () {
function Connection() {
}
return Connection;
}());
/**
* An XSRFStrategy configures XSRF protection (e.g. via headers) on an HTTP request.
*
* @experimental
*/
export var XSRFStrategy = (function () {
function XSRFStrategy() {
}
return XSRFStrategy;
}());
//# sourceMappingURL=interfaces.js.map