node-web-i2c 1.1.26 → 1.1.27
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/index.d.ts +3 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/** ポート番号 */
|
|
2
|
-
|
|
2
|
+
type PortNumber = number;
|
|
3
3
|
/** ポート名 */
|
|
4
|
-
|
|
4
|
+
type PortName = string;
|
|
5
5
|
/** I2C Slave アドレス */
|
|
6
|
-
|
|
6
|
+
type I2CSlaveAddress = number;
|
|
7
7
|
/**
|
|
8
8
|
* I2CAccess クラス
|
|
9
9
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-web-i2c",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.27",
|
|
4
4
|
"description": "I2C access with Node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"lint-staged": "^13.0.0",
|
|
27
27
|
"prettier": "^2.5.1",
|
|
28
28
|
"typedoc": "^0.23.0",
|
|
29
|
-
"typescript": "^
|
|
29
|
+
"typescript": "^5.0.0"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsc",
|