@momo2555/koppeliajs 0.0.164 → 0.0.165

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ export declare class Device {
24
24
  constructor(console: Console, address?: string);
25
25
  get color(): Color;
26
26
  get name(): string;
27
+ get address(): string;
27
28
  /**
28
29
  * Subscribes to a specific hardware event for this device.
29
30
  * @param eventName The name of the event to listen to.
@@ -31,6 +31,9 @@ export class Device {
31
31
  get name() {
32
32
  return this._name;
33
33
  }
34
+ get address() {
35
+ return this._address;
36
+ }
34
37
  /**
35
38
  * Subscribes to a specific hardware event for this device.
36
39
  * @param eventName The name of the event to listen to.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo2555/koppeliajs",
3
- "version": "0.0.164",
3
+ "version": "0.0.165",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",