I'm working in ionic3 app and I have a lot of services and functions using some special variables like:
let apiUrlPublic = 'http://localhost:8080/';
let apiUrl = 'http://localhost:9999/api/';
So I want to make those 2 variables global, like create one declaration and just call url by name.
Thanks in advance