@base-framework/base 3.0.474 → 3.0.476
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
|
*
|