You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some errors in the definition file. First of all "value removed" event has been defined twice. And secondly "value removed" definition as below
Hello,
There are some errors in the definition file. First of all "value removed" event has been defined twice. And secondly "value removed" definition as below
on(event: "value removed", listener: (nodeid: number, comclass: number, index: number) => void);
is wrong. It must be like
on(event: "value removed", listener: (nodeid: number, comclass: number, instance: number, index: number) => void);
Here "Instance" parameter is missing.
Kind Regards,
Mustafa Yuce.
The text was updated successfully, but these errors were encountered: