deeke-script-app 1.3.5 → 1.3.6
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/@deekeScript/@type/Class/UiSelector.d.ts +191 -191
- package/@deekeScript/@type/interface/DeekeScriptJson.d.ts +13 -0
- package/@deekeScript/@type/interface/Engines.d.ts +29 -29
- package/@deekeScript/@type/interface/Http.d.ts +41 -41
- package/@deekeScript/@type/interface/Images.d.ts +35 -35
- package/@deekeScript/@type/interface/Java.d.ts +7 -7
- package/@deekeScript/@type/interface/Log.d.ts +16 -16
- package/@deekeScript/@type/interface/Storage.d.ts +3 -3
- package/@deekeScript/@type/interface/System.d.ts +1 -1
- package/README.md +35 -35
- package/deekeScript.json +598 -598
- package/deekeScriptZipBuild +48 -48
- package/gulpfile +17 -17
- package/init +32 -32
- package/jsconfig.json +11 -11
- package/package.json +1 -1
- package/script/statistics/statistics.js +120 -120
- package/script/task.html +4 -4
- package/src/statistics/statistics.js +120 -120
- package/src/task/dy.js +14 -14
- package/src/task/dyApp.js +7 -7
- package/src/task/tool.js +19 -19
- package/src/task.html +4 -4
- package/test/console.js +5 -5
- package/test/deekeScriptJson.js +5 -0
- package/test/encrypt.js +3 -3
- package/test/engines.js +5 -5
- package/test/extension.js +27 -27
- package/test/files.js +7 -7
- package/test/http.js +4 -4
- package/test/images/findColor.js +10 -10
- package/test/java.js +6 -6
- package/test/log.js +10 -10
- package/test/module/module.js +4 -4
- package/test/package.js +3 -3
- package/test/permise.js +14 -14
- package/test/thread.js +11 -11
- package/test/timer.close.js +27 -27
- package/test/timer.js +25 -25
- package/test/timer.stop.js +28 -28
- package/uglify-config.json +15 -15
- package/images/test/statistics.png +0 -0
|
@@ -30,7 +30,7 @@ interface storage {
|
|
|
30
30
|
* @param key 键
|
|
31
31
|
* @param value 值
|
|
32
32
|
*/
|
|
33
|
-
public
|
|
33
|
+
public putBoolean(key: string, value: boolean): boolean;
|
|
34
34
|
|
|
35
35
|
/**
|
|
36
36
|
* 设置双精度值
|
|
@@ -51,13 +51,13 @@ interface storage {
|
|
|
51
51
|
* @param key 键
|
|
52
52
|
* @param set 值
|
|
53
53
|
*/
|
|
54
|
-
public
|
|
54
|
+
public putArray(key: string, arr: Array): boolean;
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
57
|
* 获取集合(字符串)
|
|
58
58
|
* @param key 键
|
|
59
59
|
*/
|
|
60
|
-
public getArray(key: string):
|
|
60
|
+
public getArray(key: string): Array;
|
|
61
61
|
|
|
62
62
|
/**
|
|
63
63
|
* 获取字符串
|
|
@@ -96,7 +96,7 @@ interface System {
|
|
|
96
96
|
* @param dataForm
|
|
97
97
|
* @param content
|
|
98
98
|
*/
|
|
99
|
-
public
|
|
99
|
+
public getDataFrom(key: string, dataForm: string, content: string): string | null;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
export { };
|
package/README.md
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
## DeekeScript应用代码
|
|
2
|
-
|
|
3
|
-
**DeekeScript/deekeScript** 是采用DeekeScript框架开发✨模拟点击(代替人工操控基于Android的移动设备)✨类产品的模版。在环境安装好之后,拉取本仓库到本地,即可开启美妙的旅途~~
|
|
4
|
-
|
|
5
|
-
**最终能开发出什么样的应用❓请移步查阅:
|
|
6
|
-
[https://github.com/DeekeScript/ad-deeke](https://github.com/DeekeScript/ad-deeke)**
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## 使用步骤
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
### 安装前准备
|
|
13
|
-
> 请移步到<a target="_blank" href="https://doc.deeke.cn">https://doc.deeke.cn</a> 或者 <a target="_blank" href="https://deekescript.github.io/">https://deekescript.github.io/</a>
|
|
14
|
-
>
|
|
15
|
-
> 阅读上述文档内容,并且安装相关软件和依赖
|
|
16
|
-
|
|
17
|
-
### 安装方式一:npm安装方式【推荐】
|
|
18
|
-
>
|
|
19
|
-
> 步骤一:创建文件夹
|
|
20
|
-
>
|
|
21
|
-
> 步骤二:执行下面的脚本
|
|
22
|
-
```npm i deeke-script-app```
|
|
23
|
-
|
|
24
|
-
### 安装方式二:git&npm安装方式
|
|
25
|
-
>
|
|
26
|
-
> git clone https://github.com/DeekeScript/deekeScript.git ./
|
|
27
|
-
>
|
|
28
|
-
> npm install
|
|
29
|
-
|
|
30
|
-
### 编写代码
|
|
31
|
-
> 请在src下创建代码文件
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
## Tips 📢
|
|
35
|
-
> 文件夹@deekeScript请不要删除,此代码会提供代码提示能力~
|
|
1
|
+
## DeekeScript应用代码
|
|
2
|
+
|
|
3
|
+
**DeekeScript/deekeScript** 是采用DeekeScript框架开发✨模拟点击(代替人工操控基于Android的移动设备)✨类产品的模版。在环境安装好之后,拉取本仓库到本地,即可开启美妙的旅途~~
|
|
4
|
+
|
|
5
|
+
**最终能开发出什么样的应用❓请移步查阅:
|
|
6
|
+
[https://github.com/DeekeScript/ad-deeke](https://github.com/DeekeScript/ad-deeke)**
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## 使用步骤
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### 安装前准备
|
|
13
|
+
> 请移步到<a target="_blank" href="https://doc.deeke.cn">https://doc.deeke.cn</a> 或者 <a target="_blank" href="https://deekescript.github.io/">https://deekescript.github.io/</a>
|
|
14
|
+
>
|
|
15
|
+
> 阅读上述文档内容,并且安装相关软件和依赖
|
|
16
|
+
|
|
17
|
+
### 安装方式一:npm安装方式【推荐】
|
|
18
|
+
>
|
|
19
|
+
> 步骤一:创建文件夹
|
|
20
|
+
>
|
|
21
|
+
> 步骤二:执行下面的脚本
|
|
22
|
+
```npm i deeke-script-app```
|
|
23
|
+
|
|
24
|
+
### 安装方式二:git&npm安装方式
|
|
25
|
+
>
|
|
26
|
+
> git clone https://github.com/DeekeScript/deekeScript.git ./
|
|
27
|
+
>
|
|
28
|
+
> npm install
|
|
29
|
+
|
|
30
|
+
### 编写代码
|
|
31
|
+
> 请在src下创建代码文件
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## Tips 📢
|
|
35
|
+
> 文件夹@deekeScript请不要删除,此代码会提供代码提示能力~
|