@singcl/ad-execute-manager 1.3.4 → 1.3.5

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.
@@ -44,14 +44,22 @@ export type IConstructArgs = {
44
44
  log?: boolean;
45
45
  };
46
46
  declare class AdExecuteManager {
47
- static _instance: any;
47
+ /**
48
+ * 单例实例
49
+ * @type {AdExecuteManager|null}
50
+ */
51
+ static _instance: AdExecuteManager | null;
48
52
  /**
49
53
  * 获取单例实例
50
54
  * @param {IConstructArgs} [args]
51
55
  * @returns {AdExecuteManager}
52
56
  */
53
57
  static getInstance(args?: IConstructArgs): AdExecuteManager;
54
- static getSafeInstance(): any;
58
+ /**
59
+ * 获取单例实例
60
+ * @returns {AdExecuteManager}
61
+ */
62
+ static getSafeInstance(): AdExecuteManager;
55
63
  /**
56
64
  *
57
65
  * @param {IConstructArgs} args
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singcl/ad-execute-manager",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {