@base-framework/base 3.7.26 → 3.7.27

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.
@@ -33,15 +33,6 @@ export class Tracker {
33
33
  * @returns {boolean}
34
34
  */
35
35
  has(type: any): boolean;
36
- /**
37
- * This will call the callBack with the data.
38
- *
39
- * @private
40
- * @param {function} callBack
41
- * @param {*} data
42
- * @returns {void}
43
- */
44
- private removeByCallBack;
45
36
  /**
46
37
  * This will remove the data by type.
47
38
  *
@@ -92,7 +92,7 @@ export namespace Events {
92
92
  * @returns {object} a reference to the events object.
93
93
  */
94
94
  function removeEvents(obj: object): object;
95
- let swap: Array<any>;
95
+ let swap: Set<string>;
96
96
  /**
97
97
  * This will a event type to the swappable array.
98
98
  *
@@ -24,11 +24,11 @@ export class Unit {
24
24
  * This will create a unit.
25
25
  *
26
26
  * @constructor
27
- * @param {object} [first]
27
+ * @param {any} [first]
28
28
  * @param {*} [second]
29
29
  * @param {*} [third]
30
30
  */
31
- constructor(first?: object, second?: any, third?: any);
31
+ constructor(first?: any, second?: any, third?: any);
32
32
  /**
33
33
  * @type {boolean} isUnit
34
34
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.7.26",
3
+ "version": "3.7.27",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",