Вы должны сделать инъекцию:
@Injectable()
export class InterpolationUtils {
constructor(private router: Router) {}
public interpolationvalue() {
this.router.navigate(['\x'])
}
}
и в любом компоненте:
@Component({...})
export class MyFeatureComponent {
constructor(private interpolationUtils: InterpolationUtils) {}
myMethod() {
// do stuff
this.interpolationUtils.interpolatevalue();
}
}