@tinkoff/router 0.1.66 → 0.1.67
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/README.md +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,6 +83,7 @@ The behaviour of routing depends on the result of executing guards functions and
|
|
|
83
83
|
- if all of the guards returns `undefined` than navigation will continue executing
|
|
84
84
|
- if any of the guards returns `false` than navigation is getting blocked and next action differs on server and client
|
|
85
85
|
- if any of the guards returns `string` it is considered as url to which redirect should be happen
|
|
86
|
+
- if any of the guards returns `NavigateOptions` interface, `url` property from it is considered as url to which redirect should be happen
|
|
86
87
|
|
|
87
88
|
### Transitions hooks
|
|
88
89
|
|