@bettergi/types 0.0.6 → 0.0.7

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- 本项目是一个为 [Better Genshin Impact](https://github.com/babalae/better-genshin-impact) 提供的 JavaScript 类型声明文件。
1
+ 本项目是一个为 [Better Genshin Impact](https://github.com/babalae/better-genshin-impact) 提供的 TypeScript 类型声明文件。
2
2
 
3
3
  ## 安装
4
4
 
@@ -8,7 +8,7 @@ npm install --save-dev @bettergi/types
8
8
 
9
9
  ## 用法
10
10
 
11
- 在项目的 `tsconfig.json` 文件中添加类型引用。
11
+ TypeScript 项目的 `tsconfig.json` 配置文件中添加类型引用。
12
12
 
13
13
  ```json
14
14
  {
@@ -43,8 +43,8 @@ declare global {
43
43
 
44
44
  /**
45
45
  * 相对当前鼠标位置移动光标
46
- * @param x - 水平移动偏移量(像素)
47
- * @param y - 垂直移动偏移量(像素)
46
+ * @param x - 水平方向偏移量(像素)
47
+ * @param y - 垂直方向偏移量(像素)
48
48
  * @since 0.35
49
49
  */
50
50
  function moveMouseBy(x: number, y: number): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bettergi/types",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "TypeScript Definitions for BetterGI JavaScript",
5
5
  "type": "module",
6
6
  "author": "Bread Grocery<https://github.com/breadgrocery>",