We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a86f886 commit 22686daCopy full SHA for 22686da
src/device.ts
@@ -269,10 +269,10 @@ export class Device {
269
* @note it is possible that the updated value doesn't match
270
* the value passed in.
271
*/
272
- setProperty(propertyName: string, value: Any): Promise<Any> {
+ setProperty(propertyName: string, value: Any, meta: Any): Promise<Any> {
273
const property = this.findProperty(propertyName);
274
if (property) {
275
- return property.setValue(value);
+ return property.setValue(value, meta);
276
}
277
278
return Promise.reject(`Property "${propertyName}" not found`);
0 commit comments