@plasmicapp/react-web 0.2.294 → 0.2.296

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.
@@ -41,4 +41,10 @@ export declare function assert<T>(cond: T, msg?: StringGen): asserts cond;
41
41
  * Changes: fixed setting a deep value to a proxy object
42
42
  */
43
43
  export declare function set(obj: any, keys: any, val: any): void;
44
+ /**
45
+ * Forked from https://github.com/jamesfoster/DeepEqual
46
+ * Changes: removed the comparison between constructors and instanceof objects
47
+ * because they are dependent on the window object
48
+ */
49
+ export declare function deepEqual(a: any, b: any): boolean;
44
50
  export {};