aoye 0.0.59 → 0.0.61
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/aoye.cjs.js +1 -0
- package/dist/aoye.cjs.js.map +1 -1
- package/dist/aoye.esm.js +1 -0
- package/dist/aoye.esm.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.umd.js +1 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
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