@argon-router/core 0.2.0 → 0.2.1
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 +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export declare interface Route<T> {
|
|
|
81
81
|
};
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
export declare type RouteOpenedPayload<T> = T extends void ? undefined | PayloadBase : {
|
|
84
|
+
export declare type RouteOpenedPayload<T> = T extends void ? void | undefined | PayloadBase : {
|
|
85
85
|
params: T;
|
|
86
86
|
} & PayloadBase;
|
|
87
87
|
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"registry": "https://registry.npmjs.org/"
|
|
6
6
|
},
|
|
7
7
|
"private": false,
|
|
8
|
-
"version": "0.2.
|
|
8
|
+
"version": "0.2.1",
|
|
9
9
|
"description": "Router with power of effector",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"effector",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"query-string": "^9.1.1",
|
|
55
55
|
"typed-url-params": "^1.0.1"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "9a517b09849d720ff7865c7745ace32a0ee80bfc"
|
|
58
58
|
}
|