angular2
Version:
Angular 2 - a web framework for modern web apps
14 lines (13 loc) • 326 B
JavaScript
/**
* 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}.
*/
export class ConnectionBackend {
}
/**
* Abstract class from which real connections are derived.
*/
export class Connection {
}