ng2-signalr-hinnomtx
Version:
angular2 signalr library
67 lines • 2.12 kB
JavaScript
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
import { Subject } from 'rxjs';
import { SignalRConnectionMock } from './signalr.connection.mock';
var SignalRConnectionMockManager = /** @class */ (function () {
function SignalRConnectionMockManager() {
this._errors$ = new Subject();
this._status$ = new Subject();
this._listeners = {};
this._object = new SignalRConnectionMock(this._errors$, this._status$, this._listeners);
}
Object.defineProperty(SignalRConnectionMockManager.prototype, "mock", {
get: /**
* @return {?}
*/
function () {
return this._object;
},
enumerable: true,
configurable: true
});
Object.defineProperty(SignalRConnectionMockManager.prototype, "errors$", {
get: /**
* @return {?}
*/
function () {
return this._errors$;
},
enumerable: true,
configurable: true
});
Object.defineProperty(SignalRConnectionMockManager.prototype, "status$", {
get: /**
* @return {?}
*/
function () {
return this._status$;
},
enumerable: true,
configurable: true
});
Object.defineProperty(SignalRConnectionMockManager.prototype, "listeners", {
get: /**
* @return {?}
*/
function () {
return this._listeners;
},
enumerable: true,
configurable: true
});
return SignalRConnectionMockManager;
}());
export { SignalRConnectionMockManager };
function SignalRConnectionMockManager_tsickle_Closure_declarations() {
/** @type {?} */
SignalRConnectionMockManager.prototype._listeners;
/** @type {?} */
SignalRConnectionMockManager.prototype._status$;
/** @type {?} */
SignalRConnectionMockManager.prototype._errors$;
/** @type {?} */
SignalRConnectionMockManager.prototype._object;
}
//# sourceMappingURL=signalr.connection.mock.manager.js.map