deeke-script-app 1.6.0 → 1.6.2

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.
@@ -29,6 +29,11 @@ interface Engines {
29
29
  * 关闭hooks脚本
30
30
  */
31
31
  public closeHook(): void;
32
+
33
+ /**
34
+ * 返回所有子脚本的数量
35
+ */
36
+ public childScriptCount(): number;
32
37
  }
33
38
 
34
39
  export { };
@@ -15,6 +15,11 @@ interface FloatDialogs {
15
15
  * @param content 弹窗内容
16
16
  */
17
17
  public show(content: string): void;
18
+
19
+ /**
20
+ * 关闭FloatDialogs开启的所有弹窗
21
+ */
22
+ public closeAll(): boolean;
18
23
  }
19
24
 
20
25
  export { };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deeke-script-app",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "DeekeScript应用",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {