UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

19 lines (18 loc) 524 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const rxjs_1 = require("rxjs"); class SocketEventsHostFactory { static create(server) { const init = new rxjs_1.ReplaySubject(); init.next(server); const connection = new rxjs_1.Subject(); const disconnect = new rxjs_1.Subject(); return { init, connection, disconnect, server, }; } } exports.SocketEventsHostFactory = SocketEventsHostFactory;