@mpxjs/store 2.9.11-test.0 → 2.9.36
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/@types/index.d.ts +1 -1
- package/package.json +3 -3
package/@types/index.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ type DepsSymbol = typeof DEPS_SYMBOL
|
|
|
65
65
|
type StateSymbol = typeof STATE_SYMBOL
|
|
66
66
|
type GettersSymbol = typeof GETTERS_SYMBOL
|
|
67
67
|
|
|
68
|
-
interface Store<S = {}, G = {}, M = {}, A = {}, D extends Deps = {}> {
|
|
68
|
+
export interface Store<S = {}, G = {}, M = {}, A = {}, D extends Deps = {}> {
|
|
69
69
|
|
|
70
70
|
[DEPS_SYMBOL]: D
|
|
71
71
|
[STATE_SYMBOL]: S
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/store",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.36",
|
|
4
4
|
"description": "A store for mpx framework",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "@types/index.d.ts",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/didi/mpx#readme",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@mpxjs/utils": "^2.
|
|
29
|
+
"@mpxjs/utils": "^2.9.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@mpxjs/core": "^2.9.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "23c1e87cde0eafbb4a6526d83551eb5e12740ba8"
|
|
35
35
|
}
|