@base-framework/base 3.7.63 → 3.7.64

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.
@@ -1,3 +1,12 @@
1
+ /**
2
+ * Return the underlying target object for a proxy created
3
+ * by this module, or the value itself if it is not one of
4
+ * our proxies. Safe to call with any value.
5
+ *
6
+ * @param {*} value
7
+ * @returns {*}
8
+ */
9
+ export function unwrapProxy(value: any): any;
1
10
  /**
2
11
  * Invalidate cached proxies for a specific target object.
3
12
  * Called when an object is replaced to ensure stale proxies aren't used.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.7.63",
3
+ "version": "3.7.64",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",