UNPKG

node-hue-api

Version:
15 lines (14 loc) 313 B
export class ApiDefinition { constructor(hueApi) { this._hueApi = hueApi; } execute(api, parameters) { return this.transport.execute(api, parameters); } get hueApi() { return this._hueApi; } get transport() { return this.hueApi._getTransport(); } }