标签: javascript typescript api promise
我有TPLink Smarthome API的这段代码
client.startDiscovery().on('device-new', (device) => { device.getInUse().then(console.log); });
如何将console.log中的值存储到变量中?我想将设备打开还是关闭的值存储到HTML数据库中,因此我需要将getInUse()布尔值存储在变量中