aoye 0.0.59 → 0.0.60

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.
package/dist/index.d.ts CHANGED
@@ -204,6 +204,7 @@ type MatchValue<V1, T2, P2> = (DeepValue<T2, P2> extends V1 ? P2 : never);
204
204
  declare class Store {
205
205
  static [IsStore]: boolean;
206
206
  static [StoreIgnoreKeys]: Key[];
207
+ static [Keys.ProxyFreeObject]: boolean;
207
208
  static Current: Store;
208
209
  constructor();
209
210
  parent: () => Store | null;
package/dist/index.umd.js CHANGED
@@ -1441,6 +1441,7 @@
1441
1441
  class Store {
1442
1442
  static [IsStore] = true;
1443
1443
  static [StoreIgnoreKeys] = ['ui', 'raw'];
1444
+ static [Keys.ProxyFreeObject] = true;
1444
1445
  static Current = null;
1445
1446
  constructor() {
1446
1447
  const proxy = deepSignal(this, getPulling(), true);