realm-object-server
Version:
12 lines • 362 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const event = require("events");
class ServiceWatch extends event.EventEmitter {
constructor(name, tags) {
super();
this.serviceName = name;
this.serviceTags = tags || [];
}
}
exports.ServiceWatch = ServiceWatch;
//# sourceMappingURL=ServiceWatch.js.map