@agoric/base-zone 0.1.1-dev-03b6420.0 → 0.1.1-dev-a3bdfb1.0
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/package.json +3 -3
- package/src/is-passable.d.ts +1 -1
- package/src/is-passable.d.ts.map +1 -1
- package/src/types.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/base-zone",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-a3bdfb1.0+a3bdfb1",
|
|
4
4
|
"description": "Allocation zone abstraction library and heap implementation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/Agoric/agoric-sdk",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"author": "Agoric",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@agoric/store": "0.9.3-dev-
|
|
30
|
+
"@agoric/store": "0.9.3-dev-a3bdfb1.0+a3bdfb1",
|
|
31
31
|
"@endo/common": "^1.2.0",
|
|
32
32
|
"@endo/exo": "^1.3.0",
|
|
33
33
|
"@endo/far": "^1.1.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"typeCoverage": {
|
|
59
59
|
"atLeast": 88.55
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "a3bdfb1c173ae46a9979322269aa45aa75c2343b"
|
|
62
62
|
}
|
package/src/is-passable.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export function isPassable(specimen: any): specimen is
|
|
1
|
+
export function isPassable(specimen: any): specimen is Passable;
|
|
2
2
|
//# sourceMappingURL=is-passable.d.ts.map
|
package/src/is-passable.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-passable.d.ts","sourceRoot":"","sources":["is-passable.js"],"names":[],"mappings":"AAcO,qCAHI,GAAG,
|
|
1
|
+
{"version":3,"file":"is-passable.d.ts","sourceRoot":"","sources":["is-passable.js"],"names":[],"mappings":"AAcO,qCAHI,GAAG,wBAWb"}
|
package/src/types.d.ts
CHANGED
|
@@ -39,19 +39,19 @@ export type Stores = {
|
|
|
39
39
|
/**
|
|
40
40
|
* provide a Map-like store named `label` in the zone
|
|
41
41
|
*/
|
|
42
|
-
mapStore: <K, V>(label: string, options?: StoreOptions) => MapStore<K, V>;
|
|
42
|
+
mapStore: <K, V>(label: string, options?: StoreOptions) => globalThis.MapStore<K, V>;
|
|
43
43
|
/**
|
|
44
44
|
* provide a Set-like store named `label` in the zone
|
|
45
45
|
*/
|
|
46
|
-
setStore: <K_1>(label: string, options?: StoreOptions) => SetStore<K_1>;
|
|
46
|
+
setStore: <K_1>(label: string, options?: StoreOptions) => globalThis.SetStore<K_1>;
|
|
47
47
|
/**
|
|
48
48
|
* provide a WeakMap-like store named `label` in the zone
|
|
49
49
|
*/
|
|
50
|
-
weakMapStore: <K_2, V_1>(label: string, options?: StoreOptions) => WeakMapStore<K_2, V_1>;
|
|
50
|
+
weakMapStore: <K_2, V_1>(label: string, options?: StoreOptions) => globalThis.WeakMapStore<K_2, V_1>;
|
|
51
51
|
/**
|
|
52
52
|
* provide a WeakSet-like store named `label` in the zone
|
|
53
53
|
*/
|
|
54
|
-
weakSetStore: <K_3>(label: string, options?: StoreOptions) => WeakSetStore<K_3>;
|
|
54
|
+
weakSetStore: <K_3>(label: string, options?: StoreOptions) => globalThis.WeakSetStore<K_3>;
|
|
55
55
|
};
|
|
56
56
|
import { makeExo } from '@endo/exo';
|
|
57
57
|
import { defineExoClass } from '@endo/exo';
|