Currently router.navigate() only accepts a url as a string, like this
this._router.navigate(``${ROUTES.detail}/${this.currentHero.id}``);
This works, but it would be great to be able to pass the tuple to it like this as another option:
this._router.navigate([ROUTES.detail, {id: this.currentHero.id}]);