UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

13 lines (12 loc) 414 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const constants_1 = require("../constants"); /** * Attaches native Web Socket Server to a given property. */ exports.WebSocketServer = () => { return (target, propertyKey) => { Reflect.set(target, propertyKey, null); Reflect.defineMetadata(constants_1.GATEWAY_SERVER_METADATA, true, target, propertyKey); }; };