export class Config{ public static get API_URL(): string {return "http://www.localhost/api/";} public static getAPI_URL(url: string){ if(url.indexOf('/')==0) return this.API_URL + url.substr(1); else return this.API_URL + url; } }