homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
9 lines (8 loc) • 503 B
TypeScript
import { GatewayMetadata } from '../interfaces';
/**
* Defines the Gateway. The gateway is able to inject dependencies through constructor.
* Those dependencies should belong to the same module. Gateway is listening on the specified port.
*/
export declare function WebSocketGateway(port?: number): ClassDecorator;
export declare function WebSocketGateway(options?: GatewayMetadata): ClassDecorator;
export declare function WebSocketGateway(port?: number, options?: GatewayMetadata): ClassDecorator;