@base-framework/base 3.0.474 → 3.0.475

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.
@@ -27,6 +27,12 @@ export class Tracker {
27
27
  * @returns {*} the data or false.
28
28
  */
29
29
  get(type: string): any;
30
+ /**
31
+ * This will check if a type exists.
32
+ * @param {*} type
33
+ * @returns {boolean}
34
+ */
35
+ has(type: any): boolean;
30
36
  /**
31
37
  * This will call the callBack with the data.
32
38
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.474",
3
+ "version": "3.0.475",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",