node-web-i2c 1.1.26 → 1.1.28

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.
Files changed (2) hide show
  1. package/index.d.ts +3 -3
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /** ポート番号 */
2
- declare type PortNumber = number;
2
+ type PortNumber = number;
3
3
  /** ポート名 */
4
- declare type PortName = string;
4
+ type PortName = string;
5
5
  /** I2C Slave アドレス */
6
- declare type I2CSlaveAddress = number;
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.26",
3
+ "version": "1.1.28",
4
4
  "description": "I2C access with Node.js",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -25,8 +25,8 @@
25
25
  "husky": "^8.0.0",
26
26
  "lint-staged": "^13.0.0",
27
27
  "prettier": "^2.5.1",
28
- "typedoc": "^0.23.0",
29
- "typescript": "^4.2.4"
28
+ "typedoc": "^0.24.0",
29
+ "typescript": "^5.0.0"
30
30
  },
31
31
  "scripts": {
32
32
  "build": "tsc",