I cannot figure out how can I navigate to another page/component with hybrid Angular.
In Angular 2 we use Router and something like:
this.router.navigate(['/items']);
In hybrid Angular I use hybrid routing with:
import { UIRouterUpgradeModule, NgHybridStateDeclaration } from '@uirouter/angular-hybrid';
How can I navigate from within typescript to another page/component with hybrid Angular?