File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -761,15 +761,15 @@ export interface HookMatchCriteria {
761
761
[ key : string ] : HookMatchCriterion ;
762
762
763
763
/** A [[HookMatchCriterion]] to match the destination state */
764
- to ?: HookMatchCriterion ;
764
+ to ?: HookMatchCriterion | undefined ;
765
765
/** A [[HookMatchCriterion]] to match the original (from) state */
766
- from ?: HookMatchCriterion ;
766
+ from ?: HookMatchCriterion | undefined ;
767
767
/** A [[HookMatchCriterion]] to match any state that would be exiting */
768
- exiting ?: HookMatchCriterion ;
768
+ exiting ?: HookMatchCriterion | undefined ;
769
769
/** A [[HookMatchCriterion]] to match any state that would be retained */
770
- retained ?: HookMatchCriterion ;
770
+ retained ?: HookMatchCriterion | undefined ;
771
771
/** A [[HookMatchCriterion]] to match any state that would be entering */
772
- entering ?: HookMatchCriterion ;
772
+ entering ?: HookMatchCriterion | undefined ;
773
773
}
774
774
775
775
export interface IMatchingNodes {
You can’t perform that action at this time.
0 commit comments