The information passed to the onViewTransitionCreated function provided in the withViewTransitions feature options.
API
interface ViewTransitionInfo {
transition: ViewTransition;
from: ActivatedRouteSnapshot;
to: ActivatedRouteSnapshot;
}
transition
ViewTransitionThe ViewTransition returned by the call to startViewTransition.
from
ActivatedRouteSnapshotThe ActivatedRouteSnapshot that the navigation is transitioning from.
to
ActivatedRouteSnapshotThe ActivatedRouteSnapshot that the navigation is transitioning to.