node-osc 11.2.2 → 11.2.3
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.
- package/package.json +1 -1
- package/types/Client.d.mts +2 -2
- package/types/Client.d.mts.map +1 -1
- package/types/Server.d.mts +2 -2
- package/types/Server.d.mts.map +1 -1
package/package.json
CHANGED
package/types/Client.d.mts
CHANGED
|
@@ -23,7 +23,7 @@ export default Client;
|
|
|
23
23
|
* await client.send('/oscAddress', 200);
|
|
24
24
|
* await client.close();
|
|
25
25
|
*/
|
|
26
|
-
declare class Client extends EventEmitter<
|
|
26
|
+
declare class Client extends EventEmitter<any> {
|
|
27
27
|
/**
|
|
28
28
|
* Create an OSC Client.
|
|
29
29
|
*
|
|
@@ -36,7 +36,7 @@ declare class Client extends EventEmitter<[never]> {
|
|
|
36
36
|
constructor(host: string, port: number);
|
|
37
37
|
host: string;
|
|
38
38
|
port: number;
|
|
39
|
-
_sock: import("dgram").Socket;
|
|
39
|
+
_sock: import("node:dgram").Socket;
|
|
40
40
|
/**
|
|
41
41
|
* Close the client socket.
|
|
42
42
|
*
|
package/types/Client.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Client.d.mts","sourceRoot":"","sources":["../lib/Client.mjs"],"names":[],"mappings":";AAKA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH;IACE;;;;;;;;OAQG;IACH,kBANW,MAAM,QACN,MAAM,EAiBhB;IAVC,aAAgB;IAChB,aAAgB;IAChB,
|
|
1
|
+
{"version":3,"file":"Client.d.mts","sourceRoot":"","sources":["../lib/Client.mjs"],"names":[],"mappings":";AAKA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH;IACE;;;;;;;;OAQG;IACH,kBANW,MAAM,QACN,MAAM,EAiBhB;IAVC,aAAgB;IAChB,aAAgB;IAChB,mCAGE;IAMJ;;;;;;;;;;;;;;;;;OAiBG;IACH,sBAZa,OAAO,CAAC,IAAI,CAAC,GAAC,SAAS,CAuBnC;IACD,2DA2BC;IACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqCG;IACH,cA7Bc,GAAC,EAAA,GAIF,OAAO,CAAC,IAAI,CAAC,GAAC,SAAS,CAmDnC;CACF;6BA9K4B,aAAa"}
|
package/types/Server.d.mts
CHANGED
|
@@ -46,7 +46,7 @@ export default Server;
|
|
|
46
46
|
* console.log(`Note: ${pitch}, Velocity: ${velocity}`);
|
|
47
47
|
* });
|
|
48
48
|
*/
|
|
49
|
-
declare class Server extends EventEmitter<
|
|
49
|
+
declare class Server extends EventEmitter<any> {
|
|
50
50
|
/**
|
|
51
51
|
* Create an OSC Server.
|
|
52
52
|
*
|
|
@@ -73,7 +73,7 @@ declare class Server extends EventEmitter<[never]> {
|
|
|
73
73
|
constructor(port: number, host?: string, cb?: Function);
|
|
74
74
|
port: number;
|
|
75
75
|
host: string;
|
|
76
|
-
_sock: import("dgram").Socket;
|
|
76
|
+
_sock: import("node:dgram").Socket;
|
|
77
77
|
/**
|
|
78
78
|
* Close the server socket.
|
|
79
79
|
*
|
package/types/Server.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Server.d.mts","sourceRoot":"","sources":["../lib/Server.mjs"],"names":[],"mappings":";AAKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH;IACE;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,kBApBW,MAAM,SACN,MAAM,iBAgEhB;IArCC,aAAgB;IAChB,aAAgB;IAChB,
|
|
1
|
+
{"version":3,"file":"Server.d.mts","sourceRoot":"","sources":["../lib/Server.mjs"],"names":[],"mappings":";AAKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH;IACE;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,kBApBW,MAAM,SACN,MAAM,iBAgEhB;IArCC,aAAgB;IAChB,aAAgB;IAChB,mCAGE;IAiCJ;;;;;;;;;;;;;;;;;OAiBG;IACH,sBAZa,OAAO,CAAC,IAAI,CAAC,GAAC,SAAS,CAuBnC;CACF;6BAvJ4B,aAAa"}
|